Reply to comment
Do transition use CATransition rather than UIView animation
use CATransition will give us smoother animation than original UIView animation, and we can set more "Hidden" transition type.
CATransition* trans = [CATransition animation];
[trans setType:kCATransitionPush];
[trans setDuration:0.5];
[trans setSubtype:kCATransitionFromBottom];
// code to change the view//
CALayer *layer = rootViewController.view.layer;
[layer addAnimation:trans forKey:@"Transition"];
Submitted by water on Tue, 2008-09-09 09:38

Recent comments
17 weeks 6 days ago
23 weeks 1 day ago
26 weeks 3 days ago
27 weeks 3 days ago
36 weeks 2 days ago
36 weeks 2 days ago
36 weeks 2 days ago
36 weeks 4 days ago
38 weeks 2 days ago
38 weeks 3 days ago