更改 UITabBarController 更多项目颜色
我有一个带有“更多”选项卡的 UITabBarController,我想修改其配色方案。
导航控制器导航栏颜色
我已经能够通过子类化 UITabBarController 并将以下代码添加到 ViewDidLoad 方法来更改“更多”选项卡的 UINavigationController 的背景颜色:
UINavigationController *moreController = self.moreNavigationController;
moreController.navigationBar.tintColor = [UIColor redColor];
我还想更改导航控制器的文本颜色但无法确定如何完成此操作。
表格视图突出显示颜色
我想禁用或更改“更多”选项卡 UITableView 的突出显示颜色。我不想禁用选择功能,我只想更改或删除蓝色突出显示颜色。
我看到在哪里可以更改 UITableViewCell 的 texLabel 的 SelectedTextColor 属性,但我不确定如何或何时需要设置它,因为我不是表视图的数据源。
编辑视图导航栏颜色
当选择“编辑”按钮时,顶部的导航栏将恢复为基本的蓝色。
有什么方法可以访问此导航栏以更改其色调颜色吗?
I have a UITabBarController with a "More" tab whose color scheme I would like to modify.
Navigation Controller Nav Bar Colors
I've been able to change the background color of the "More" tab's UINavigationController by subclassing the UITabBarController and adding the following code to the ViewDidLoad method:
UINavigationController *moreController = self.moreNavigationController;
moreController.navigationBar.tintColor = [UIColor redColor];
I would also like to change the Nav controller's text color but have not been able to determine how to accomplish this.
Table View Highlight Colors
I'd like to disable or change the highlight color for the "More" tab's UITableView. I don't want to disable the ability to select, I just want to change or remove the blue highlight color.
I see where I can change the SelectedTextColor property for a UITableViewCell's texLabel, but I'm unsure how or when this needs to be set given I'm not the table view's datasource.
Edit View Nav Bar Color
When the Edit button is selected, the nav bar at the top reverts to the basic blue color.
Is there any way to access this nav bar to change its tint color?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我修改 UITabBarController 中“更多”部分的方法是简单地推送到不同的 UITableView ,然后创建我感兴趣的正在显示的单元格最初位于默认的“更多”部分。
我所做的只是添加一个带有 3 个点的
UITabBarItem
来模仿原始的“更多”图标。这样您就可以完全控制视图。The way I've modified the "More" section in a
UITabBarController
is to simply push to a differentUITableView
instead and just create the cells I'm interested in that were displaying originally in the default "More" section.All I do is just add a
UITabBarItem
with 3 dots that mimics the original "More" icon. That way you have complete control over the view.