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

ios页面弹出方式《笔记》

时间:2016-08-15 18:50:58      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:

1、presentViewController 方式,动画效果是从底部弹出,主要用在除导航类页面的弹出

let anotherVC = UIStoryboard(name: "Main", bundle: nil).instantiateViewControllerWithIdentifier("aaa") as! AnotherViewController

presentViewController(anotherVC, animated: true, completion: nil)

有问题的页面弹出:

let anotherVC = AnotherViewController(),这种弹出子页面,背景会是黑的,而且控件都未被实例化

ios页面弹出方式《笔记》

标签:

原文地址:http://www.cnblogs.com/zwp315/p/5773869.html

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