I have this code here that I found:,

CATransition *animation = [CATransition animation];
[animation setDelegate:self];
//kCATransitionMoveIn, kCATransitionPush, kCATransitionReveal, kCATransitionFade
//kCATransitionFromLeft, kCATransitionFromRight, kCATransitionFromTop, kCATransitionFromBottom
[animation setType:kCATransitionMoveIn];
[animation setSubtype:kCATransitionFromTop];
[animation setDuration:0.75];
[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]];    
[[self.view layer] addAnimation:animation forKey:kCATransition];

How would I modify this code to mimick presentModalView?

Thanks!

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.