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 {
}
}
}];