我尝试使用 FBRequestConnection 类方法发布带有朋友标签的状态startForPostStatusUpdate:place:tags:completionHandler:
作为
[self dismissViewControllerAnimated:YES completion:nil];
[FBRequestConnection startForPostStatusUpdate:Message
place:nil
tags:[NSArray arrayWithArray:users] completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
[self showAlert:@"" result:result error:error];
}];
其中 users 数组包含用户 ID。
我收到错误消息“无法指定没有地点标签的用户标签”。
请告诉我解决方案如何在此方法中添加位置参数。