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];
}];
}