Hello every I’m new in iPhone development I want to animate text word by for in UITextView if any one can please tell me from very basics I’ll be very thankful to you all !!
Hello every I’m new in iPhone development I want to animate text word by
Share
It wont be animated really but you could break the text you want to display into words with
NSArray *wordsToDisplay = [text componentsSeparatedByString:@” “];
then run a timer and everytime the timer fires, add another word to the text in the textview, invalidating the timer once all the words are displayed