仅使用代码制作我的应用的UI。 无法找到自定义情侣元素的方式: 1.按钮'返回'现在它看起来像:
它看起来应该是:
那么,我怎么能摆脱' Back'按钮标题中的文字,保持'<'系统图标在那里?以及如何更改后退按钮和导航栏标题的颜色?
答案 0 :(得分:4)
试
self.navigationController?.navigationBar.tintColor = UIColor.white
答案 1 :(得分:0)
尝试:
override func viewDidLoad(){
//any other initial stuffs
//for the bar
navigationController?.navigationBar.tintColor = UIColor.black
//for the button
navigationController?.navigationBar.backItem?.titleView?.tintColor = UIColor.white
}
答案 2 :(得分:0)
答案 3 :(得分:0)