Hide UISearchBar Cancel Button

后端 未结 11 881
夕颜
夕颜 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:02

    I managed to hide the "Cancel" button by subclassing UISearchBar and override this method:

    -(void)layoutSubviews{
        [super layoutSubviews];
        [self setShowsCancelButton:NO animated:NO];
    }
    

提交回复
热议问题