我遇到tabbarcontroller的问题,特别是“更多”标签,并希望得到一些帮助!
在我的AppDelegate中,我已经将标题栏自定义为我自己的颜色:
UINavigationBar.appearance().setBackgroundImage(UIImage(), forBarPosition: UIBarPosition.Any, barMetrics: UIBarMetrics.Default)
UINavigationBar.appearance().shadowImage = UIImage()
UINavigationBar.appearance().barTintColor = UIColor(red: 0.0/255.0, green: 51.0/255.0, blue: 102.0/255.0, alpha: 1.0)
UINavigationBar.appearance().tintColor = UIColor.whiteColor()
UINavigationBar.appearance().titleTextAttributes = [NSForegroundColorAttributeName : UIColor.whiteColor()]
这适用于“更多”选项卡中的所有选项卡APART。 “更多”选项卡现在具有完全白色的标题栏和白色文本,因此您无法阅读它。
如何进行颜色更改的任何想法都适用于“更多”标签?似乎设置背景图像是引起问题的线,如果我评论它可行。但是,我需要在我的其他选项卡中使用该行,我需要删除标题栏底部的阴影图像(您无法删除阴影图像而不需要背景图像)。我似乎无法使其适用于该标签和更多标签。有任何想法吗?谢谢!