如何在swift中从xib导航到其他xib?

时间:2015-05-12 08:30:00

标签: ios swift navigation

我想从由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 class

控制

1 个答案:

答案 0 :(得分:0)

self.presentViewController(cb_main_noticeView, animated: false, completion: nil)

如果您的应用中没有导航控制器,则Juste会删除navigationController。