0
我想在navaigationBar
中添加左欄按鈕項目。 我在左側有後退按鈕標誌(沒有任何文字),當我添加leftBarButtonItem
時,我看不到後退按鈕。導航帶後退按鈕的左欄按鈕項目
我該如何解決這個問題。
這是我的代碼:
let phonePhoto = UIButton()
phonePhoto.setImage(UIImage(named: "navigationPhone"), for: UIControlState())
phonePhoto.frame = CGRect(x: 0, y: 0, width: 40, height: 40)
phonePhoto.addTarget(self, action: #selector(userEdit), for: .touchUpInside)
let userPhone = UIBarButtonItem()
userPhone.customView = phonePhoto
self.navigationItem.leftBarButtonItem = userPhone