我正在尝试允许用户通过 Facebook 登录我的应用程序。我正在关注本指南https://developers.facebook.com/docs/howtos/login-with-facebook-using-ios-sdk/
我已完成所有步骤,包括名为“iOS 版 Facebook sdk 入门”的步骤。
当我复制并粘贴以下方法时,此处出现错误:
return [FBSession openActiveSessionWithPermissions:permissions
这是我复制和粘贴的方法。
- (BOOL)openSessionWithAllowLoginUI:(BOOL)allowLoginUI {
NSArray *permissions = [[NSArray alloc] initWithObjects:
@"user_likes",
@"read_stream",
nil];
return [FBSession openActiveSessionWithPermissions:permissions
allowLoginUI:allowLoginUI
completionHandler:^(FBSession *session,
FBSessionState state,
NSError *error) {
[self sessionStateChanged:session
state:state
error:error];
}];
}
错误说:“选择器'openActiveSessionWithPermissions:allowLoginUI:completionHandler:'没有已知的类方法”
有人可以帮我弄清楚我做错了什么吗?如果您想查看更多我的代码来解决问题,请告诉我。