0
我使用Facebook sdk下面的代碼。問題在於UIWebView中打開了對話框。我可以看到有一個本機對話框,但爲什麼我的代碼打開UIWebView?我在設備上安裝了本機Facebook應用程序。應用程序邀請對話框使用UIWebView
FBSDKAppInviteContent *content =[[FBSDKAppInviteContent alloc] init];
content.appLinkURL = [NSURL URLWithString:@"https://www.example.com/myapplink"];
//optionally set previewImageURL
content.appInvitePreviewImageURL = [NSURL URLWithString:@"https://www.example.com/my_invite_image.jpg"];
// present the dialog. Assumes self implements protocol `FBSDKAppInviteDialogDelegate`
[FBSDKAppInviteDialog showWithContent:content
delegate:self];