Hide UISearchBar Cancel Button

后端 未结 11 861
夕颜
夕颜 2020-12-24 06:39

I have a UISearchDisplayController and UISearchBar hooked up to my ViewController via Outlets from my nib.

I\'d like to hide the cancel button so that the user never

11条回答
  •  攒了一身酷
    2020-12-24 07:23

    On iOS 13.0 and later, UISearchController has this property you can use:

    @property (nonatomic) BOOL automaticallyShowsCancelButton API_AVAILABLE(ios(13.0)); // Default YES
    

提交回复
热议问题