0

我想向用户的 Facebook 朋友发送应用请求。我正在使用 facebook-ios-sdk 3.1.1 框架。有

 [FBNativeDialogs presentShareDialogModallyFrom:self.parentViewController initialText:@"Some text..." image:nil url:[NSURL URLWithString:@"www.apple.com"] handler:nil];

但这会为提要而不是为应用程序请求提供对话框。并且 FBWebDialogs 在 sdk 3.1.1 中不存在。框架。

有没有其他方法可以做到这一点?

任何帮助表示赞赏。

谢谢,

萨亚利

4

2 回答 2

0

试试这个代码:

[FBWebDialogs presentRequestsDialogModallyWithSession:[PFFacebookUtils session]
            message:@"Check this app" title:nil parameters:params handler:^(FBWebDialogResult result, NSURL *resultURL, NSError *error) {
              if (error) {
                  // Case A: Error launching the dialog or sending request.
              } else {
                  if (result == FBWebDialogResultDialogNotCompleted) {
                      //Case B: User clicked the "x" icon
                  } else {
                      //Case C: Dialog shown and the user clicks Cancel or Send
                  }
              }
        }];
于 2013-05-13T13:20:46.517 回答
0

试试这个:

[FBWebDialogs
     presentRequestsDialogModallyWithSession:nil
     message:@"Learn how to make your iOS apps social."
     title:nil
     parameters:nil
     handler:^(FBWebDialogResult result, NSURL *resultURL, NSError *error) {}
];
于 2014-02-25T06:57:22.403 回答