Objective-c UIViewController原生态跳转动画

在IOS7中苹果原生态VC跳转动画

原生态跳转动画有4种

1. 默认:UIModalTransitionStyleCoverVertical 上下弹出

2.UIModalTransitionStyleFlipHorizontal 翻转

3.UIModalTransitionStyleCrossDissolve  淡入

4.UIModalTransitionStylePartialCurl 翻页动画


列如:

      SearchViewController * searchViewControlleer=[SearchViewController new];

      //跳转风格

      searchViewControlleer.modalTransitionStyleUIModalTransitionStylePartialCurl

                //模态跳转

     [self presentViewController:searchViewControlleer animated:YES completion:nil];



你可能感兴趣的:(Objective-c UIViewController原生态跳转动画)