Styling the cancel button in a UISearchBar

前端 未结 21 1414
-上瘾入骨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:13

    stupid way

    for(id cc in [SearchBar subviews])
    {
        if([cc isKindOfClass:[UIButton class]])
        {
            UIButton *btn = (UIButton *)cc;
            ......
            Do whatever you want
            .......        
        }
    }
    

提交回复
热议问题