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'm currently writing an app that uses Facebook integration built into iOS 6. Now in order to do that, I need to

#import <Social/Social.h>

How do I ensure that the device can actually run the code and won't crash (check if it's iOS 6 or iOS 5.1 and then performing the right code, because I support iOS 5.1<= )?

share|improve this question

2 Answers

up vote 4 down vote accepted

You could use:

[[UIDevice currentDevice] systemVersion]
share|improve this answer
I cannot use it when I do #import... – harrym17 Sep 27 '12 at 8:21
@harrym17 Use that for the actually implementation, then in your project summary tab change the social framework from required to optional. – 0x7fffffff Oct 3 '12 at 17:59
Okay, Thank you very much! – harrym17 Jan 17 at 10:27

This works fine for me:

if(SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"6.0")){
//Use social framework
}else{
//other option
}
share|improve this answer
Oh thank you! This should work better than the marked answer, I will confirm and mark – harrym17 Feb 4 at 18:08
Won't work unless you define it somewhere: stackoverflow.com/questions/7848766/… – Ngoan Nguyen Feb 6 at 21:25

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.