在Swift我有一个按钮创建程序语言使用:
var button = UIBarButtonItem(title: "Tableau",style: .Plain,target: self,action: "tabBarTableauClicked")
我想要的是,当用户点击按钮时,它会更改viewController。
这是TabBarTableauClicked的代码:
func tabBarTableauClicked(){ performSegueWithIdentifier("tableau",sender: self) }
但是显然没有工作,因为没有一个名为“tableau”的标识符。
并且我不能使用Ctrl创建一个segue单击该按钮并拖动到第二个viewController,因为按钮是按程序创建的,而不是在故事板中。
如何在Swift中以编程方式创建标识符?
@H_502_14@