popViewControllerAnimated: custom transition animation?

后端 未结 3 1337
醉话见心
醉话见心 2020-12-17 00:33

Yes, I have looked for an answer already. None of the solutions work, except one that doesn\'t give the option for a fade transition, only flip or curl.

Like this:

3条回答
  •  自闭症患者
    2020-12-17 00:46

    In iOS 7 above, you may want to look into UIViewControllerAnimatedTransitioning for presented view controllers, or UINavigationControllerDelegate method :

    - (id)navigationController:(UINavigationController *)navigationController animationControllerForOperation:(UINavigationControllerOperation)operation fromViewController:(UIViewController *)fromVC toViewController:(UIViewController *)toVC
    

    I have some sample code from another question for more info.

提交回复
热议问题