Reputation: 745
I'm quite new to Objective-C and I have this problem. I'm animating an image an show this in a imageview. after 15 seconds i want to show another view, thought of a "flying in view from the bottom".
Any hints for me how i could manage that?
Upvotes: 0
Views: 158
Reputation: 44103
Have a look at NSTimer, it lets you call a delegate after a certain time. Views can be animated to come in from the bottom as well by using UIViewAnimationTransitionCurlUp. Check out the UIView doc for more information and examples.
Upvotes: 2