是否可以(使用iOS SDK)向预先知道的人员列表发送消息?我使用的语法来自(https://developers.facebook.com/docs/ios/share#message-dialog):
[FBDialogs presentMessageDialogWithLink:[NSURL URLWithString:@"https://developers.facebook.com/docs/ios/"]
handler:^(FBAppCall *call, NSDictionary *results, NSError *error) {
if(error) {
// An error occurred, we need to handle the error
// See: https://developers.facebook.com/docs/ios/errors
NSLog([NSString stringWithFormat:@"Error messaging link: %@", error.description]);
} else {
// Success
NSLog(@"result %@", results);
}
}];
据我所知,共享对话框的一些用法支持:参数,但我在这里看不到。
编辑:看起来用户选择器对话框似乎不能与SDK的其他消息传递/共享功能结合使用。这似乎是一种荒谬的疏忽。
谢谢!