iOS ta tabbar background değiştirmek için aşağıdaki kodu kullanmamız gereklidir.Bunu AppDelegate’de
– (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
methodu içinde yapacağız.
Objective-C
//////
UITabBar *tabBar = tabBarController.tabBar;
UIImage* tabBarBackground;
tabBarBackground = [UIImage imageNamed:@"tabbar.png"];
[[UITabBar appearance] setBackgroundImage:tabBarBackground];
0 