自定义更多NavigationController
我正在尝试在 UITabBarController 中自定义 moreNavigationController。我已经阅读了很多帖子和指南来设计这个样式,并且我已经设法更改导航栏的色调颜色和表格视图的背景颜色,但仍然有一些东西我想自定义。
我已经更改了色调颜色和背景,如下所示:
tabcontroller.moreNavigationController.navigationBar.tintColor = [UIColor orangeColor];
tabcontroller.moreNavigationController.topViewController.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"tableview-background-blue.png"]];
tabcontroller.moreNavigationController.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"tableview-background-blue.png"]];
我想更改 UITableView 的单独颜色(边框)。我还想更改单击“编辑”时出现的导航栏的色调颜色。另外,如果我可以更改整个内容的语言(“更多”和“编辑”选项卡等),那就太好了。
这些更改是否可能,如果可以,您知道如何做吗?
I am trying to customize the moreNavigationController in a UITabBarController. I have been reading a lot of posts and guides to style this and I have managed to change the tint color of the navigation bar and the background color of the table view but there are still a few things that I would like to customize.
I have changed the tint color and the background like this:
tabcontroller.moreNavigationController.navigationBar.tintColor = [UIColor orangeColor];
tabcontroller.moreNavigationController.topViewController.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"tableview-background-blue.png"]];
tabcontroller.moreNavigationController.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"tableview-background-blue.png"]];
I would like to change the seperate color (the border) of the UITableView. I would also like to change the tint color of the navigation bar which appears when clicking "Edit". Also it would be great if I could change the language of the whole thing (the "More" and the "Edit" tab and so on)
Would these changes be possible and if so, do you know how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您无法更改此选项卡的名称,这些名称是预定义的。我正在考虑编辑按钮和更多选项卡。
I think you can't change the names of this tabs, which are predefined. I'm taking about the Edit button & the more tab.