實(shí)現(xiàn)代碼
let attDict = [
NSForegroundColorAttributeName : UIColor.clear ,
NSFontAttributeName : UIFont.systemFont(ofSize: 0.1)
]
UIBarButtonItem.appearance().setTitleTextAttributes(attDict , for: .normal)
UIBarButtonItem.appearance().setTitleTextAttributes(attDict , for: .highlighted)
- 將系統(tǒng)自帶的title顏色設(shè)置為.clear,以達(dá)到隱藏的目的
- 將字體大小修改為0.1,以保證當(dāng)前title在中心位置

效果圖.png