facebook.framework を使用しています iOS 6.0 のネイティブ facebook ダイアログを使用して画像を共有したい
画像を共有できますが、アプリ名を表示したい....現在ios経由で表示されているように....I6 + + 65はアプリ名を表示したい..xyz経由のように...私は以下のコードを使用しています... ..
- (IBAction)publishButtonAction:(id)sender {
// Try and present the iOS Share Sheet
[FBDialogs
presentOSIntegratedShareDialogModallyFrom:self
initialText:@"" image:[UIImage imageNamed:@"iossdk_logo.png"]
url:[NSURL URLWithString:@"https://developers.facebook.com/ios"]
handler:^(FBOSIntegratedShareDialogResult result, NSError *error) {
NSString *alertText = @"";
if ([[error userInfo][FBErrorDialogReasonKey]
isEqualToString:FBErrorDialogNotSupported]) {
alertText = @"iOS Share Sheet not supported.";
} else if (error) {
alertText = [NSString stringWithFormat:
@"error: domain = %@, code = %d",
error.domain, error.code];
} else if (result == FBNativeDialogResultSucceeded) {
alertText = @"Posted successfully.";
}
if (![alertText isEqualToString:@""]) {
// Show the result in an alert
[[[UIAlertView alloc] initWithTitle:@"Result"
message:alertText
delegate:self
cancelButtonTitle:@"OK!"
otherButtonTitles:nil]
show];
}
}];
}