@IBAction func buttonAction(sender: UIbutton){ self.performSegueWithIDentifIEr("SeguetoPostDetail",sender: sender)}
Xcode错误是“….没有成员’performSequeWithIDentifIEr’
谢谢!
解决方法 您不能在Xib类中调用performSegueWithIDentifIEr,只能在UIVIEwController类中调用.所以你有2个解决方案:>在UIVIEwController中按下按钮,单击该按钮调用performSegueWithIDentifIEr.
>在Xib类中创建委托,UIVIEwController类实现该委托协议. How do I set up a simple delegate to communicate between two view controllers?
以上是内存溢出为你收集整理的xcode – 执行从Xib到ViewContoller的segue全部内容,希望文章能够帮你解决xcode – 执行从Xib到ViewContoller的segue所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)