iOS Facebook问题分享链接对话框,如何知道用户分享成功?

时间:2017-09-18 05:54:54

标签: ios objective-c facebook fbsdk

当我选择X或Post成功时,FBSDK(版本4.26.0)总是回调相同的方法(设备不要安装Facebook应用程序)

- (void)sharer:(id<FBSDKSharing>)sharer didCompleteWithResults:(NSDictionary *)results

结果为空

我如何知道用户分享成功或取消它?

请帮助我!

我正在使用这种方法

FBSDKShareLinkContent *content = [[FBSDKShareLinkContent alloc] init];

content.contentURL = URL;

[FBSDKShareDialog showFromViewController:viewController withContent:content delegate:self];

1 个答案:

答案 0 :(得分:0)

我收到了以下回调:

- (void)sharer:(id<FBSDKSharing>)sharer didCompleteWithResults:(NSDictionary *)results 
{
    NSLog(@"completed");
}

但问题是当我选择X(关闭共享界面)或Post(要成功共享内容)时,FBSDK(版本4.26.0)总是回调相同的方法didCompleteWithResults with results = empty

注意:设备未安装Facebook App