From FB documentation : The best way to publish image (for iOS 6.x) :
- (void)publishToFacebook:(UIImage*)image {
BOOL displayedNativeDialog =
[FBNativeDialogs
presentShareDialogModallyFrom:uiViewController
initialText:@""
image:image
url:[NSURL URLWithString:shortURL]
handler:^(FBNativeDialogResult result, NSError *error) {
if (error) {
/* handle failure */
NSLog(@"FB Error");
} else {
if (result == FBNativeDialogResultSucceeded) {
/* handle success */
NSLog(@"FB Success");
} else {
/* handle user cancel */
NSLog(@"FB Cancel");
}
}
}];
if (!displayedNativeDialog) {
NSLog(@"no Native Support");
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"FBPublishErrorTitle", @"") message:NSLocalizedString(@"FBPublishError", @"") delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
[alert show];
}
}