1

如何在presentFeedDialogModallyWithSession使用中传递多个 facebook Id FBWebDialogs

NSMutableDictionary *params1 = [NSMutableDictionary dictionaryWithObjectsAndKeys:

                                   FACEBOOK_APP_ID, @"app_id",

                                   @"http://www.google.com", @"link",

                                   @"TestApp", @"name",

                                   @"I'm playing Guess This for iOS. Join my leaderboard!", @"message",

                                   @"Guess This is a social puzzle game, just match the pictures to a 

    word or 
    phrase.", @"caption",
                                    facebookID,@"to",nil];


[FBWebDialogs presentFeedDialogModallyWithSession:session//[FBSession activeSession]

                                                parameters:params1

                                                   handler:

          ^(FBWebDialogResult result, NSURL *resultURL, NSError *error){

          }];

那么如何在 facebookId String 中传递多个 facebook Id?

4

2 回答 2

1

id使用Feed Dialogor时不能添加超过 1Send Dialog

于 2014-04-07T07:11:41.947 回答
0

您可以通过将它们作为以逗号分隔的单个字符串传递来执行此操作。

如果你有一个 id 字符串数组,你可以这样做:

[idArray componentsJoinedByString:@","]

编辑

根据此处的文档,对于提要对话框,您似乎只能有一个用户to。我上面所说的确实适用于某些对话框类型。

于 2014-04-07T05:34:23.433 回答