I have not yet seen the answer to my question, so I ask: I am currently using (void) customizeappearance to customize the design of my tab and navigation bar. Will this feature restrict the use of my application on iOS5-based iPhone only? If not, will my bands be the same on all devices?
Thanks in advance.
Here is the method I'm using:
- (void)customizeAppearance { UIImage *tabBackground = [[UIImage imageNamed:@"bg_tab"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 0, 0)]; [[UITabBar appearance] setBackgroundImage:tabBackground]; [[UITabBar appearance] setSelectionIndicatorImage: [UIImage imageNamed:@"bg_tab_selected"]]; [[UITabBar appearance] setSelectedImageTintColor:[UIColor whiteColor]]; }
source share