码迷,mamicode.com
首页 > 移动开发 > 详细

iOS开发之自定义控制器切换

时间:2015-12-11 20:26:22      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

iOS8以后, 苹果公司推出了UIPresentationController, 通过其(presentedController 和 presentingController)来控制modal控制器操作.

我对跳转 进行了封装, 只需要将单例对象设置为 VC的 transitioningDelegate!

自定义modal步骤:

  • 1. 设置过渡代理

      secVC.transitioningDelegate = [ROTransition sharedROTransition];

  • 2. 设置展示样式为 UIModalPresentationCustom

      secVC.modalPresentationStyle = UIModalPresentationCustom;

  • 3. 完成跳转

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

 完整Demo [我的github](https://github.com/Jiaguanglei0418/DIYViewControrllerTransition)

iOS开发之自定义控制器切换

标签:

原文地址:http://www.cnblogs.com/guangleijia/p/5039839.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!