Share and Post image on Facebook wall:
SLComposeViewController *shareSheet = [SLComposeViewController
composeViewControllerForServiceType:SLServiceTypeFacebook];
[shareSheet setInitialText:@"YOUR TEXT"];
[shareSheet addImage:[UIImage imageNamed:@"Icon.png"]];//your image
[shareSheet setCompletionHandler:^(SLComposeViewControllerResult result) {
switch (result) {
case SLComposeViewControllerResultCancelled:
NSLog(@"Post Canceled");
break;
case SLComposeViewControllerResultDone:
NSLog(@"Post Sucessful");
break;
default:
break;
}
}];
[self presentViewController:shareSheet animated:YES completion:nil];
No comments:
Post a Comment