实现代码
let attDict = [
NSForegroundColorAttributeName : UIColor.clear ,
NSFontAttributeName : UIFont.systemFont(ofSize: 0.1)
]
UIBarButtonItem.appearance().setTitleTextAttributes(attDict , for: .normal)
UIBarButtonItem.appearance().setTitleTextAttributes(attDict , for: .highlighted)
- 将系统自带的title颜色设置为.clear,以达到隐藏的目的
- 将字体大小修改为0.1,以保证当前title在中心位置