Я хочу использовать пользовательский цвет TabBar.
Afetr iOS 5 release Я использовал следующий код:
CGRect frame = CGRectMake(0, 0, 480, 49);
UIView *view = [[UIView alloc] initWithFrame:frame];
UIImage *tabBarBG = [UIImage imageNamed:@"tabBar.png"];
UIColor *color = [[UIColor alloc] initWithPatternImage:tabBarBG];
[view setBackgroundColor:color];
[color release];
if ([[[UIDevice currentDevice] systemVersion] floatValue] > 4.9) {
[self.tabBarController.tabBar insertSubview:view atIndex:1];
}
else {
[self.tabBarController.tabBar insertSubview:view atIndex:0];
}
[view release];
В iOS 5 все было в порядке, но в iOS 5.0.1 это не работает.
Как установить цвет TabBar в iOS 5.0.1?
Спасибо