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 am using SLComposerview in my app for facebook which get the login information from setting app. My problem is that i want to put a check that if there is no login information present in setting app for facebook i want to call "method 2".ie

        if(Login Present)
        {
           SlComposeView;
        } 
        else
        {
           Method 2;
        }

        if([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook])
        {
            mySocialComposer = [SLComposeViewController       
            composeViewControllerForServiceType:SLServiceTypeFacebook];
            [mySocialComposer setInitialText:[NSString stringWithFormat: 
            @"%@",txtFe.text]];
            [mySocialComposer addImage:[UIImage imageNamed:Nil]];
            [self presentViewController:mySocialComposer animated:YES completion:nil];


            [mySocialComposer setCompletionHandler:^(SLComposeViewControllerResult 
               result) {
                switch (result) {
                    case SLComposeViewControllerResultCancelled:{
                        UIAlertView *alert = [[UIAlertView alloc] 
                        initWithTitle:@"Facebook Message" message:@"Post Cancled" 
                        delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
                        [alert show];
                    }
                        break;
                    case SLComposeViewControllerResultDone:{
                        UIAlertView *alert = [[UIAlertView alloc] 
                        initWithTitle:@"Facebook Message" message:@"Post Sent" 
                        delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
                        [alert show];
                    }
                        break;
                    default:
                        break;
                }

                [txtFe becomeFirstResponder];
            }];







        } 
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.