I just want to add facebook functionality in my app. i want to add image on facebook through my app.
Is there any sample available for iOS6.
I just want to add facebook functionality in my app. i want to add image on facebook through my app.
Is there any sample available for iOS6.
Visit this official documentation, SLComposeViewController Class Reference.
Apple has created a social framework. SLComposeViewController
is the controller which will handle all the request for social interaction.
if([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook])
{
SLComposeViewController *objSLComposeViewController = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook];
SLComposeViewControllerCompletionHandler __block completionHandler=^(SLComposeViewControllerResult result)
{
[objSLComposeViewController dismissViewControllerAnimated:YES completion:nil];
switch(result)
{
case SLComposeViewControllerResultCancelled:
default:
break;
case SLComposeViewControllerResultDone:
break;
}
}
[objSLComposeViewController addImage:yourImage];
[objSLComposeViewController setInitialText:@"YourInitialText"];
[objSLComposeViewController addURL:[NSURL URLWithString:@"YourURL"]];
[objSLComposeViewController setCompletionHandler:completionHandler];
[self presentModalviewController:objSLComposeViewController animated:YES completion:nil];
}
I hope this helps.