iOS UISearchBar 獲取 cancelButton,UItextField

獲取CancelButton,代碼以下:orm

for (UIView *view in [[_searchBar.subviews lastObject] subviews]) {it

        if ([view isKindOfClass:[UIButton class]]) {ast

            UIButton *cancelBtn = (UIButton *)view;            class

            NSAttributedString *str2 = [[NSAttributedString alloc] initWithString:@"取消" attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:15],NSForegroundColorAttributeName:COLORWITH_RGB(82, 158, 204)}];            file

            [cancelBtn setAttributedTitle:str2 forState:UIControlStateNormal];view

        }vi

    }search

 

獲取UItextfiled,代碼以下:arc

for (UIView *view in [[_searchBar.subviews lastObject] subviews]){

        if ([view isKindOfClass:[UITextField class]]) {

            UITextField *textFiled = (UITextField*)view;

        }

    }

雖然獲取到了試圖,但有一些屬性無法設置,只能對一些進行處理

相關文章
相關標籤/搜索