Make a UIBarButtonItem disappear using swift IOS

前端 未结 15 2161
慢半拍i
慢半拍i 2020-12-10 23:31

I have an IBOutlet that I have linked to from the storyboard

@IBOutlet var creeLigueBouton: UIBarButtonItem!

and I want to make it disappea

15条回答
  •  失恋的感觉
    2020-12-11 00:25

    For Swift 3

    if (your_condition) {
      self.navigationItem.rightBarButtonItem = self.addAsset_btn
     }
    else {
      // hide your button
      self.navigationItem.rightBarButtonItem = nil
     }
    

提交回复
热议问题