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