Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to know how to post a status message to Facebook on iOS 6 using the new frameworks on Xcode 4.5. Thanks! :)

share|improve this question
There is nice set of tutorials here : developers.facebook.com/docs/getting-started/… – Preet Sangha Sep 20 '12 at 2:50
No, I meant using the new frameworks on iOS 6. – jaytrixz Sep 20 '12 at 2:51
Ahh sorry. Ok .................. – Preet Sangha Sep 20 '12 at 2:54
1  
you can use social framework for more details visit kmithi.blogspot.in/2012/10/… – mithilesh Oct 13 '12 at 22:07

3 Answers

up vote 40 down vote accepted

posting a message is rather simple. It's almost like with the Twitter Framework.

First you have to import the Frameworks: Social and Accounts

#import <Social/Social.h>
#import <Accounts/Accounts.h>

In your .h file:

SLComposeViewController *mySLComposerSheet;

This code has to be included inside your action in your .m file:

    if([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook]) //check if Facebook Account is linked
    {
      mySLComposerSheet = [[SLComposeViewController alloc] init]; //initiate the Social Controller
        mySLComposerSheet = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook]; //Tell him with what social plattform to use it, e.g. facebook or twitter
                [mySLComposerSheet setInitialText:[NSString stringWithFormat:@"Test",mySLComposerSheet.serviceType]]; //the message you want to post
       [mySLComposerSheet addImage:yourimage]; //an image you could post
        //for more instance methodes, go here:https://developer.apple.com/library/ios/#documentation/NetworkingInternet/Reference/SLComposeViewController_Class/Reference/Reference.html#//apple_ref/doc/uid/TP40012205
        [self presentViewController:mySLComposerSheet animated:YES completion:nil];
    }
    [mySLComposerSheet setCompletionHandler:^(SLComposeViewControllerResult result) {
        NSString *output;
        switch (result) {
            case SLComposeViewControllerResultCancelled:
                output = @"Action Cancelled";
                break;
            case SLComposeViewControllerResultDone:
                output = @"Post Successfull";
                break;
            default:
                break;
        } //check if everythink worked properly. Give out a message on the state.
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Facebook" message:output delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
        [alert show];
    }];
share|improve this answer
Thanks for this. It works. :) – jaytrixz Sep 20 '12 at 11:02
You are welcome, no problemo :) – Blade Sep 20 '12 at 14:21
Good one, Blade :) – Charan Sep 22 '12 at 7:52
@Blade thans . but i want to share message without actionsheet like "TWRequest" so what is process in facebook ? – Coder Dec 25 '12 at 5:52
@Blade thanx a lot........ – sandy Mar 22 at 11:31
show 4 more comments

I tried the code and it gives me

No Facebook Account

There are no Facebook accounts configured. You can add or create a Facebook account in settings.

Though message is self explanatory, I am not quite sure where to configure the settings. Will be great if someone could help me out with this issue.

share|improve this answer
Got it.. For some reason, when I tried going to settings, it did not let me go and add my account details. However, when I started writing code from scratch, it worked fine. – codeinzone Mar 27 at 1:37

@opensourcelover

On your iOS device go into the settings app and scroll down to the facebook tab. Then just set up your account.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.