iOS Change the title of cancel button in UISearchBar

前端 未结 13 1941
隐瞒了意图╮
隐瞒了意图╮ 2020-12-28 10:35

I wish to change the title of the cancel button in iOS. I have been using this previously:

- (void)searchDisplayControllerWillBeginSearch:(UISearchDisplayCon         


        
13条回答
  •  旧巷少年郎
    2020-12-28 10:50

    in order to make it work on iOS7, you have to search in the subview of search bar:

    //iOS 7 hack
    searchBar.showsCancelButton = YES;
    UIView* view=searchBar.subviews[0];
    for (UIView *subView in view.subviews) {
        if ([subView isKindOfClass:[UIButton class]]) {
            UIButton *cancelButton = (UIButton*)subView;
    
            [cancelButton setTitle:@"Anuluj" forState:UIControlStateNormal];
        }
    }
    

提交回复
热议问题