vote up 0 vote down star

I want to create transition animation within a UIView (not from one UIView to another).

I have one UIView that has two UITextView fields with some text in them that comes from a database record. There are next/back buttons on the screen also. When the user pressed the next button, the next record contents are shows.

When this transition is taking place from one record to the next, I want to show some kind of animation of the entire view like CurlUp, FadeIn etc. Is this possible? Is so, can you provide some sample code?

flag

2 Answers

vote up 2 vote down check

You can animate any view (root view or subview) just by changing supported properties within a UIView beginAnimations/commitAnimations block.

That said I don't know whether a text is a supported property. Instead you may have to "fake" the text change by having overlaid UITextView's with one fading out and the next fading in.

So yes, you can definitely do such an animation for when your text changes but you may have to be creative about it.

link|flag
I was able to do this on the UITextView by changing the alpha property. – gingersnap Apr 20 at 17:01
vote up 0 vote down

It is, you'll want to check out CoreAnimation, and the use of the animator: method call.

There's a pretty cool example/tutorial in Apple's programming guide:

Core Animation Programming Guide

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.