FB iOS SDK - 如何检测用户点击完成的时间?

时间:2017-02-09 14:55:21

标签: ios swift facebook-ios-sdk

我想知道如何检测用户点击左上角的“完成”以跳过登录。

那时是否调用了任何委托方法?

我需要检测到在我的UI中解锁userInteraction。

enter image description here

1 个答案:

答案 0 :(得分:2)

FBSDKLoginManager *login = [[FBSDKLoginManager alloc] init];
[login logInWithReadPermissions: @[PERMISSIONS] fromViewController:self handler:^(FBSDKLoginManagerLoginResult *result, NSError *error) {
    if (error) {
        NSLog(@"Process error %@", error);
    } else if (result.isCancelled) {
      // User tap Done
    } else {
      // Successful login  
    }
}];