1

i use this code to go to a new nib .

[self.navigationController pushViewController:statuttableview animated:YES];

Can i change the type of animation ?

user761812
  • 245
  • 2
  • 5
  • 15

2 Answers2

2

Take a look at the modalTransitionStyle property on UIViewController.

http://developer.apple.com/library/ios/#documentation/uikit/reference/UIViewController_Class/Reference/Reference.html

jaminguy
  • 25,840
  • 2
  • 23
  • 21
2

Have a look at Custom animation for pushing a UIViewController.

The modalTransitionStyle is only for presenting modal view controllers.

Community
  • 1
  • 1
Nick Weaver
  • 47,228
  • 12
  • 98
  • 108