我在我的 iOS 应用程序中使用 Facebook Native Share Dialog。我给出了初始文本,但是当对话框弹出时,它会将帖子 URL 添加到我的初始文本中。我怎么解决这个问题?这里是代码。
BOOL displayedNativeDialog =
[FBNativeDialogs
presentShareDialogModallyFrom:self
initialText:@"Say something about this..."
image:[UIImage imageWithData:imageData]
url:[NSURL URLWithString:activityUrl]
handler:^(FBNativeDialogResult result, NSError *error) {
if (error) {
} else {
if (result == FBNativeDialogResultSucceeded) {
} else {
}
}
}];