項目中常常會使用 UINavigationController 對各個頁面進(jìn)行導(dǎo)航滓玖,導(dǎo)航欄左側(cè)的返回按鈕默認(rèn)標(biāo)題文字是上級頁面的title废赞。
但如果上級頁面的標(biāo)題很長良蒸,那么這個返回按鈕字很多就會很丑逾一。
當(dāng)文字極其長時返回文字就會變成“back”梯澜。
1姻锁、只修改文字枕赵,或者去掉文字,保留系統(tǒng)的<箭頭
在父界面中:
let item = UIBarButtonItem(title: "返回", style: .plain, target: self, action: nil)
self.navigationItem.backBarButtonItem = item
2位隶、自定義返回按鈕
在本界面:
override func viewDidLoad() {
let leftBarBtn = UIBarButtonItem(title: "", style: .plain, target: self, action: #selector(self.backToPrevious))
leftBarBtn.image = UIImage(named: "back")
//用于消除左邊空隙拷窜,要不然按鈕頂不到最前面
let spacer = UIBarButtonItem(barButtonSystemItem: .fixedSpace, target: nil, action: nil)
spacer.width = -10 // 按實際需要修改
self.navigationItem.leftBarButtonItems = [spacer, leftBarBtn]
}
//返回按鈕點擊響應(yīng)
func backToPrevious() {
self.navigationController?.popViewController(animated: true)
}
3、自定義返回按鈕+文字
override func viewDidLoad() {
let button = UIButton(type: .system)
button.frame = CGRect(x: 0, y: 0, width: 65, height: 30)
button.setImage(UIImage(named: "back"), for: .normal)
button.setTitle("返回", for: .normal)
button.addTarget(self, action: #selector(self.backToPrevious), for: .touchUpInside)
let leftBarBtn = UIBarButtonItem(customView: button)
//用于消除左邊空隙涧黄,要不然按鈕頂不到最前面
let spacer = UIBarButtonItem(barButtonSystemItem: .fixedSpace, target: nil, action: nil)
spacer.width = -10 // 按需調(diào)整
self.navigationItem.leftBarButtonItems = [spacer, leftBarBtn]
}
//返回按鈕點擊響應(yīng)
func backToPrevious() {
self.navigationController?.popViewController(animated: true)
}