Skip to content

View Controller转场

戴铭 edited this page Mar 11, 2015 · 2 revisions

UINavigationControllerDelegate中相关方法

- (id<UIViewControllerAnimatedTransitioning>)
     navigationController:(UINavigationController *)navigationController
     animationControllerForOperation:(UINavigationControllerOperation)operation
     fromViewController:(UIViewController*)fromVC
     toViewController:(UIViewController*)toVC
{
     if (operation == UINavigationControllerOperationPush) {
          return self.animator;
     }
     return nil;
}

Clone this wiki locally