执行注销转场
Perform logout segue
我有这个错误:
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[CustomLogin.LogoutViewController logoutButton:]: unrecognized selector sent to instance 0x7feaf340ea70'
我有3个VC,其中两个没问题,但是我认为第三个-logoutviewcontroller有错误。我将 LogOutViewController 的橙色 UIButton 连接到登录视图控制器并调用 segue LogOut。登录视图控制器中有代码:
@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()
}
这里有什么问题?谢谢!
您的 IBAction
在 故事板 中的设置不正确。在 Storyboard 中,定义的操作链接到名为 logoutButton:
的方法,但代码中的方法称为 loggedOut:
.
我建议删除 Interface Builder 中的操作,然后在代码中将其与您的方法重新连接。
我有这个错误:
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[CustomLogin.LogoutViewController logoutButton:]: unrecognized selector sent to instance 0x7feaf340ea70'
我有3个VC,其中两个没问题,但是我认为第三个-logoutviewcontroller有错误。我将 LogOutViewController 的橙色 UIButton 连接到登录视图控制器并调用 segue LogOut。登录视图控制器中有代码:
@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()
}
这里有什么问题?谢谢!
您的 IBAction
在 故事板 中的设置不正确。在 Storyboard 中,定义的操作链接到名为 logoutButton:
的方法,但代码中的方法称为 loggedOut:
.
我建议删除 Interface Builder 中的操作,然后在代码中将其与您的方法重新连接。