How can I dynamically hide a button from a view?

前端 未结 12 2149
执念已碎
执念已碎 2020-12-04 21:24

I would like to dynamically hide a button in one of my views depending on a certain condition.

I tried adding some code to the view controller\'s -viewWillAppe

12条回答
  •  孤城傲影
    2020-12-04 22:30

    Set the bar item to nil.

    For example:

    self.navigationItem.leftBarButtonItem = nil;
    

提交回复
热议问题