我有这个错误:
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[CustomLogin.LogoutViewController logoutButton:]: unrecognized selector sent to instance 0x7feaf340ea70'
我有3个VC,其中两个可以,但我认为第三个 - logoutviewcontroller有错误。我将LogOutViewController的橙色UIButton连接到Login View Controller并调用segue LogOut。 LogIn View Controller中有代码:
@IBAction func loggedOut(sender: AnyObject) {
PFUser.logOut()
self.performSegueWithIdentifier("loggedOut", sender: self)
var alert = UIAlertView(title: "Success", message: "You have logged out", delegate: self, cancelButtonTitle: "OK")
alert.show()
}
这里有什么问题?谢谢!
答案 0 :(得分:4)
您的IBAction
未在 Storyboard 中正确设置。在 Storyboard 中,定义的操作链接到名为logoutButton:
的方法,但代码中的方法称为loggedOut:
。
我建议删除Interface Builder中的操作,并将其与代码中的方法重新连接。