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 have in my app a facebook share button, a tweet button. My app supports to IOS 5.1. So for twitter there is no problem. But how should I work with the facebook share button.

If the IOS device that is running the app is using IOS6 I want to use the new way, like you can see over here

But when the app is running on previous IOS devices. I want to use the old fashion way.

Can anybody help me?

Kind regards

share|improve this question
1  
Just use the new Facebook 3.0 iOS SDK, this will handle it all for you. Also the Twitter framework is deprecated in iOS 6, you should move to the social framework. And you should never build something that checks the iOS version, just check wether a class is available: if ([SLRequest class] != nil) – rckoenes Oct 18 '12 at 12:17
@rckoenes Okay, first I used the social framework for both facebook like and twitter tweet. But I understand you correctly I should use for facebook the Facebook 3.0 IOS SDK and for twitter the social framework. Correct ? – Sarah Geebelen Oct 18 '12 at 12:26
Yes, the Facebook SDK will use the native Social Framwork if available. – rckoenes Oct 18 '12 at 12:42
Okay I will try that – Sarah Geebelen Oct 18 '12 at 12:45
Because Apple provides a Social Framework use it instead of iOS version number. What if in the next version of iOS, Apple removes facebook? Then you have to modify your code again. – Black Frog Oct 18 '12 at 12:46
show 2 more comments

4 Answers

up vote 5 down vote accepted

If you're wondering if SLComposeViewController supports Facebook, check isAvailableForServiceType, e.g.

if ([SLComposeViewController class]) {
    // once you know that they have iOS 6 or higher
    // check if the account is setup
    if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook])
    {
        // now we know we have a facebook account configure and logged in
    }
} else {
    // You don't have iOS 6 or higher
}

It's generally better to use API (or class or NSClassFromString for weakly linked classes, or respondsToSelector, if a class has methods that were added in later versions of iOS) rather than checking for version of iOS. For more information, see Supporting Multiple Versions of iOS section of the iOS App Programming Guide.

share|improve this answer
Okay, this works for me! – Sarah Geebelen Oct 18 '12 at 18:59

you can get ios version by following code

 NSLog(@"systemVersion: %@", [[UIDevice currentDevice] systemVersion]);

It may helps you. On version base you put conditon for difrrent ios version.

share|improve this answer

You can use the following code:

if([[[UIDevice currentDevice] systemVersion] intValue] == 6)
{
 // your code for iOS 6
}
else
{
 // your code for other iOS
}
share|improve this answer

The steps are: First weak link the social framework (make it optional)

Next check to see if the app can you use SLComposeViewController and then check to see if the user has set up their Facebook account

if(NSClassFromString(@"SLComposeViewController") != nil)
{
  if([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook]])
  {
   //Add your SLComposeViewController code
  }
}
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.