我正在尝试使用以下代码自定义 UITabbar 没有任何运气:
这是在我的 viewDidLoad 方法中
UIImage *tabBackground = [[UIImage imageNamed:@"tabbar.png"]
resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 0, 0)];
// Set background for all UITabBars
[[UITabBar appearance] setBackgroundImage:tabBackground];
// Set background for only this UITabBar
[[self.tabBarController tabBar] setBackgroundImage:tabBackground];
知道我在这里可能会出错吗?谢谢