如何使用presentFeedDialogModallyWithSession
在FBWebDialogs
中传递多个Facebook ID?
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?
答案 0 :(得分:1)
使用id
或Feed Dialog
Send Dialog
以上
答案 1 :(得分:0)
您可以将它们作为以逗号分隔的单个字符串传递。
如果你有一个id字符串数组,你可以这样做:
[idArray componentsJoinedByString:@","]
修改强>
根据文档here,对于Feed对话框,您似乎只能在to
中拥有一个用户。我上面所说的确适用于某些对话框类型。