Text to speech in iPhone? [duplicate] - iphone

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Text to speech on iPhone
I am working in iPhone application, Using UITextView to enter the text from user, then i have set play button, when the user select the play button, text read from UITextView to speech.
But i didn't know this concept, How to read a text from UITextView to speech? please help me
Thanks in Advance

Have a look on the following sample code,
https://github.com/goelay/mycode/tree/75d2ef5284f335c31748ea61c5ff1ff3205829a4/sfoster-iphone-tts-a6502c779cd3

Related

how to do signature in iphone app using a textfield [duplicate]

This question already has answers here:
IOS: draw a line with your finger
(1 answer)
Capturing signatures in an iOS app
(2 answers)
Closed 9 years ago.
I have app in which i want that user sign the signature for contract as we normmally sign on paper so is there any way we can implement that signature user can do with finger as we normally do in documents.
You should do with the basic drawing feature available in iOS using
CGContextAddQuadCurveToPoint
Then take the image and then add to the field. Its good to have an ImageView on the place where you want to sign the same.

How to capture black and white video using in iPhone [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Recording video in Black and White
How to capture the black and white video
I am developing iPhone application. In this application i need to capture the video that video format is black and white video. I trying to solve this last one week. I don't know how solve this. If anybudy know how to capture the black and white video, here post your commands. give some example link and code also, It's needful for development.
Thanks in Advance.
coreimage (ios 5 or higher) have many of the video/image filters that can be configured to attain dramatic effects including the one you are looking for (b&w).
checkout the documentation for the same:
https://developer.apple.com/library/mac/documentation/graphicsimaging/Conceptual/CoreImaging/index.html

Can I get the iPhone number pad in an iPad app? [duplicate]

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
UIKeyboardTypeNumberPad on iPad
I want to give users the option of only inputting numbers. The number pad for iPad pops up with other symbols etc. Is it possible to get the iPhone version of the number pad in an iPad app?
Unfortunately, this is not possible. You can only use the UIKeyboardTypeNumberPad to get the numbers on an iPad, and the letters and symbols are not locked out. If you really need this, I would recommend looking up tutorials about making custom keyboards and using NSMutableStrings. This way, you can create your own keyboard and experience, and still have the same number pad as the iPhone.

Make objects "shake" on iPhone [duplicate]

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
how to create iphone's wobbling icon effect?
I'm trying to figure out how to make objects "shake" like when you hold down your finger on apps in the homescreen, so you can move them around and put them in folders.
How can I achieve this?
The Three20 Launcher has this exact function. It's an opensource iOS framework, you could download it, run a demo project and replicate or use their implementation.

How to create a sidebar similar to the facebook app for iOS? [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
What's the best way to develop a sideswipe menu like the one in Facebook's new iOS app?
How can i create a sidebar similar to the facebook app for iOS (iPhone/iPad)? That sidebar that appears when you slide your finger horizontally. There is a component for this or is it just a UIView?
You're in luck! Somebody just created a complete sample app showing how to create that, and includes a video of the effect. Here it is:
https://github.com/BenHall/ios_facebook_style_navigation
There is no already made component to do that given by Apple.
I would say it's just an UIView under the main one that is slided on the right.
You might want to start from here and work your way out. The basic idea is very much there.