views:

44

answers:

3

hey all,

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 fpr me how i could manage that?

thanx in advance

marcus

+1  A: 

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.

willcodejavaforfood
+1  A: 

Another easy way is to call performSelector:withObject:afterDelay:

zonble
A: 

guys, muchas gracias for the hints :)

marcus

michbeck