我试过这个 solution,但是没有用.
我发现改变颜色的唯一选择是
[[UIVIEw appearance] setTintcolor:[UIcolor redcolor]];
但它改变了应用程序中的所有颜色.
代码只是一个带有故事板的新项目,所以我只是在故事板上添加了视图.
谢谢你的帮助.
编辑:我添加代码后:
UIImage *myImage = [[UIImage imagenamed:@"music.png"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];self.tabbarItem = [[UITabbarItem alloc] initWithTitle:@"New Title" image:myImage selectedImage:[UIImage imagenamed:@"music.png"]];
选择视图时图像会发生变化,但仍然是蓝色.
解决方法 要做你需要的,你应该通过为每个控制器创建UITabbarItem来使用图像,并添加图像和选定的图像.见Apple Documentation about UITabBarItem
另外看看@Aaron Brager:
> How to set UITabBarItem’s unselected tint,***including system items*** (iOS7)
> UITabBarController unselected icon image tint
在查看完整代码后进行编辑
首先,你的项目有很多错误,资产应该在xcassets文件夹中,在视图中,在’super vIEwDIDLoad’之后执行你的代码编写等等.
关于您的问题,在FirstVIEwController的vIEwDIDLoad方法中
- (voID)vIEwDIDLoad { [super vIEwDIDLoad]; // Do any additional setup after loading the vIEw,typically from a nib. // Your code start here,not before the super [[UITabbar appearance] setTintcolor:[UIcolor redcolor]]; // Get table vIEw of more new vIEwController UItableVIEw *vIEw =(UItableVIEw*)self.tabbarController.moreNavigationController.topVIEwController.vIEw; vIEw.tintcolor = [UIcolor redcolor]; // Change the image color if ([[vIEw subvIEws] count]) { for (UItableVIEwCell *cell in [vIEw visibleCells]) { cell.textLabel.textcolor = [UIcolor redcolor]; // Change the text color } }}总结
以上是内存溢出为你收集整理的ios – 在更多菜单中更改UITabBar色调颜色全部内容,希望文章能够帮你解决ios – 在更多菜单中更改UITabBar色调颜色所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)