Reputation: 245
i use this code to go to a new nib .
[self.navigationController pushViewController:statuttableview animated:YES];
Can i change the type of animation ?
Upvotes: 1
Views: 617
Reputation: 47241
Have a look at Custom animation for pushing a UIViewController.
The modalTransitionStyle is only for presenting modal view controllers.
Upvotes: 2
Reputation: 25940
Take a look at the modalTransitionStyle property on UIViewController.
Upvotes: 2