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.
 -(IBAction)faceBook:(id)sender{

  if([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook]) {

SLComposeViewController *controller = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook];

SLComposeViewControllerCompletionHandler myBlock = ^(SLComposeViewControllerResult result){
    if (result == SLComposeViewControllerResultCancelled) {

        NSLog(@"Cancelled");

    } else

    {
        NSLog(@"Done");
    }

    [controller dismissViewControllerAnimated:YES completion:Nil];
};
controller.completionHandler =myBlock;

[controller setInitialText:@"#VOX"];
[controller addURL:[NSURL URLWithString:@""]];
[controller addImage:[UIImage imageNamed:@""]];

[self presentViewController:controller animated:YES completion:Nil];

 }
  else{
NSLog(@"UnAvailable");
}

 }

Hello, I am trying to figure out why my iOS device says unavailable in nslog,but this method works perfectly on simulator.Can anyone confirm the service is down?

share|improve this question
which OS do you have on device? – Atif Dec 30 '12 at 17:14
@Atif iOS lower than 6.0 would not recognize the Social framework. – Stavash Dec 30 '12 at 17:25
@Stavash, yes you are correct. +1 for your answer :) – Atif Dec 30 '12 at 17:30

1 Answer

It looks like you have no Facebook accounts set up on your device. As the documentation states:


isAvailableForServiceType

Return Value Returns a Boolean value indicating whether the service is accessible and at least one account is set up.

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.