Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Check iPhone iOS Version

One of the changes made in iOS 5 is the ability to override the drawrect methods. This means I need to change the appearance of the navigationBar and tabBar on a different way. I am able to use apple new methods:

[[UINavigationBar appearance]setBackgroundImage:[UIImage imageNamed:@"navigationBarBackgroundRetro.png"] forBarMetrics:UIBarMetricsDefault];
//I create my TabBar controlelr
tabBarController = [[UITabBarController alloc] init];
[[UITabBar appearance]setBackgroundImage:[UIImage imageNamed:@"navigationBarBackgroundRetroTab.png"]];  // Icreate the array that will contain all the View controlelr
[[UITabBar appearance] setSelectionIndicatorImage:
 [UIImage imageNamed:@"tab_select_indicator"]];

I am currently in the development of an app running on 4.3 & iOS 5. since iOS 5 ignores the drawrect method that i'm overriding it should run the above code. And if the device is running on <= 4.3 it will use the drawrect method. But these devices are not able to run the above code. How can I implement such rule? Is there a way to check if the device is compliant with one of the above methods than run it, otherwise skip it?

Kind regards,

Alex van Rijs

share|improve this question

marked as duplicate by Matt, Tim Post Oct 26 '11 at 9:57

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

AvailabilityInternal.h macros

  #if __IPHONE_OS_VERSION_MIN_REQUIRED >= 60000 
    // iOS 6.0 or later
  #else 
    // iOS 5.X or earlier
  #endif

Core Foundation version

BOOL atLeastIOS5 = kCFCoreFoundationVersionNumber >= kCFCoreFoundationVersionNumber_iOS_5_0;

If you cmd+click you'll see that Core Foundation versions are only defined up to iOS 5.1.

Device system version

NSString *version = [[UIDevice currentDevice] systemVersion];

BOOL isAtLeast5 = [version floatValue] >= 5.0;
BOOL isAtLeast6 = [version floatValue] >= 6.0;

An alternative way:

BOOL isAtLeast5 = [version hasPrefix:@"5."];
BOOL isAtLeast6 = [version hasPrefix:@"6."];

An alternative way:

BOOL isAtLeast5 = [version compare:@"5.0" options:NSNumericSearch] != NSOrderedAscending
BOOL isAtLeast6 = [version compare:@"6.0" options:NSNumericSearch] != NSOrderedAscending

In case of concerns about float/string conversion, let it be know that everything above reports correctly if the version is equal or greater, for any possible iOS version (5.0, 5.0.1, 5.1, etc.).

share|improve this answer
That just checks the SDK used for compilation. It's not a runtime check and won't work as intended. – nschum Oct 20 '11 at 20:34
Right, answer updated. – Jano Oct 20 '11 at 21:29
This answer doesn't work if the device is running 4.3.2 It will returns true for the > 4.3 check. – Mark Norgren Jan 26 '12 at 3:32
Fixed (until iOS 6 at least!). I didn't expect 4.3.3 either when I wrote it. :) – Jano Jan 26 '12 at 10:47

Not the answer you're looking for? Browse other questions tagged or ask your own question.