I am using a navigation controller and push segues to control the flow of my app. Is there anyway to change the default animation of right-to-left for the push segues? Is there something I can overwrite somewhere?
Thanks
I am using a navigation controller and push segues to control the flow of my app. Is there anyway to change the default animation of right-to-left for the push segues? Is there something I can overwrite somewhere?
Thanks
Yes , you can changes transition style of ViewController with different animation. see below link.
transition style animation
ViewController transition
Custom ViewController transition
ADTransitionController
transition
ViewController T
I did the following and it works fine.. and is simple and easy to understand..
And the same thing for push..
don't forget to include QuartCore (#import )
You can create an
NSObject
class and subclass it fromUIStoryboardSegue
and then override the-(void)perform
function to give it your own custom animations. There you can use any animations either pre-defined or your own. For details, checkout this link.