我正在尝试像Instagram一样(或任何带有工具栏的应用程序)工具栏,从屏幕导航到屏幕。
我有一个导航控制器,有5个屏幕,我已经这样做了:
self.toolbarItems = self.navigationController!.toolbarItems
@IBAction func profileButtonClicked(sender: UIBarButtonItem) {
self.popToRootViewControllerAnimated(false)
self.performSegueWithIdentifier("showProfile", sender: self)
}
所以它正在工作,但是当我第一次访问navigationController然后转到newViewController时,我不喜欢转换,我希望根本没有转换。
如果你帮助我,我将感激不尽。
本