user761812
user761812

Reputation: 245

How to make a rotate animation

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

Answers (2)

Nick Weaver
Nick Weaver

Reputation: 47241

Have a look at Custom animation for pushing a UIViewController.

The modalTransitionStyle is only for presenting modal view controllers.

Upvotes: 2

jaminguy
jaminguy

Reputation: 25940

Take a look at the modalTransitionStyle property on UIViewController.

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

Upvotes: 2

Related Questions