如何快速从 xib 导航到其他 xib?
Posted
技术标签:
【中文标题】如何快速从 xib 导航到其他 xib?【英文标题】:How to navigate from xib to other xib in swift? 【发布时间】:2015-07-23 00:21:47 【问题描述】:我想从 swift 类控制的 xib 导航到由 Objective-c 类控制的其他 xib。
这是我的代码:
let cb_main_noticeView = cb_main_notice(nibName: "cb_main_notice", bundle: nil) as cb_main_notice
self.navigationController?.presentViewController(cb_main_noticeView, animated: false, completion: nil)
** 没用 **
注意:cb_main_notice 由objective-c类控制
【问题讨论】:
那么问题出在哪里? 【参考方案1】:self.presentViewController(cb_main_noticeView, animated: false, completion: nil)
如果您的应用中没有导航控制器,请移除 navigationController。
【讨论】:
以上是关于如何快速从 xib 导航到其他 xib?的主要内容,如果未能解决你的问题,请参考以下文章
如何在Objective c xib类中导航视图控制器(快速制作)