Hi I don't understand because in some device the facebook or twitter posting form appair without problem and in others it don't appair! With the same ios Version!
I think is a problem of permission because my app don't ask to user if it can access to facebook...
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:@"Questo รจ un testo di prova",mySLComposerSheet.serviceType]]; //the message you want to post
[mySLComposerSheet addImage:[UIImage imageNamed:@"pinAltro.png"]]; //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];
}