搜索
您的当前位置:首页正文

UIViewController的转场

来源:哗拓教育
  • 普通的Push,Present

  • iOS7之前

        transitionFromViewController:
                      toViewController:
                              duration:
                               options:
                            animations:
                            completion:
    
  • iOS7之后
    UINavigationControllerDelegate
    UIViewControllerAnimatedTransitioning

Top