Styling the cancel button in a UISearchBar

前端 未结 21 1391
-上瘾入骨i
-上瘾入骨i 2020-12-02 09:13

I have a UISearchBar that has a cancel button (it\'s displayed using -(void)setShowsCancelButton:animated). I\'ve changed the tintColor of the sear

21条回答
  •  南方客
    南方客 (楼主)
    2020-12-02 10:11

    For iOS 10 & above, use following method

    [[UIBarButtonItem appearanceWhenContainedInInstancesOfClasses:@[[UISearchBar class]]] setTintColor:[UIColor blackColor]];
    

提交回复
热议问题