事先聲明一下剪返,本篇的實現(xiàn)效果是在今年八月份未發(fā)布iOS8.0之前,自己根據(jù)項目需求修改的邓梅。而后在十月份發(fā)布的iOS8之后并沒有做相應(yīng)修改仍然是適配的随夸,所以大致修改是類似的。
通常在使用UISearchBar的時候大多都需要修改系統(tǒng)默認(rèn)的背景色和自定義風(fēng)格來與自己的app相適配震放。由于系統(tǒng)風(fēng)格實在太丑了宾毒,但是UISearchBar的構(gòu)造隨著iOS版本的升級也在不斷地改變。所以需要對不用版本的iOS做適配殿遂,這里來記錄一下相關(guān)要點诈铛。
首先來看一下效果圖:左邊為未修改系統(tǒng)默認(rèn)的,右邊則是自定義修改之后的樣式效果墨礁。當(dāng)然我們還可以根據(jù)自己自定義出更美觀的界面出來幢竹。
這里,介紹一個剛剛學(xué)到的技巧:我們可以使用 UIView的私有方法recursiveDescription來看一下UI控件的視圖層次結(jié)構(gòu)恩静,在控制臺打印出它的繼承關(guān)系焕毫。
如: po [self.searchBar recursiveDescription]
在iOS7.0之前,UISearchbar視圖里直接包含UISearchBarBackground和UISearchBarTextField兩個視圖驶乾,而在iOS7.0及之后邑飒,UISearchbar視圖里包含的是一個UIView視圖,然后UIView視圖里面才是UISearchBarBackground和UISearchBarTextField兩個視圖级乐。相當(dāng)于做了一次View的封裝疙咸。
所以 去除UISearchbar視圖里的UISearchBarBackground之后,UISearchbar的背景也就透明了风科,同時也可以自定義顏色等撒轮。使用如下代碼即實現(xiàn)目的:
for (UIView *view in self.searchBar.subviews) {
// for before iOS7.0
if ([view isKindOfClass:NSClassFromString(@"UISearchBarBackground")])
{ [view removeFromSuperview];
break;
}
// for later iOS7.0(include)
if ([view isKindOfClass:NSClassFromString(@"UIView")] && view.subviews.count > 0)
{ [[view.subviews objectAtIndex:0] removeFromSuperview];
break;
}}
而對于以上項目截圖的實現(xiàn)效果乞旦,并沒有使用以上這段實現(xiàn)。而是判斷系統(tǒng)版本使用如下部分代碼:
if ([self.searchBar respondsToSelector:@selector(barTintColor)])
{ if ([[[UIDevice currentDevice] systemVersion] doubleValue] >= 7.1)
{ //ios7.1
[[[[self.searchBar.subviews objectAtIndex:0] subviews] objectAtIndex:0] removeFromSuperview];
[self.searchBar setBackgroundColor:[UIColor clearColor]];
}else{ //ios7.0
[self.searchBar setBarTintColor:[UIColor clearColor]];
[self.searchBar setBackgroundColor:[UIColor clearColor]];
}}else{
//iOS7.0 以下
[[self.searchBar.subviews objectAtIndex:0] removeFromSuperview]; [self.searchBar setBackgroundColor:[UIColor clearColor]];
}
以下是本項目中修改的實現(xiàn)代碼:
- (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar{
searchBar.showsCancelButton = YES;//注意题山,必須寫這一句兰粉,否則第一次cancel不能改變
UIButton *cancelButton; UIView *topView = self.searchBar.subviews[0];
for (UIView *subView in topView.subviews) {
if ([subView isKindOfClass:NSClassFromString(@"UINavigationButton")])
{ cancelButton = (UIButton*)subView;
} }
if (cancelButton) { //Set the new title of the cancel button
[cancelButton setTitle:@"取消" forState:UIControlStateNormal]; cancelButton.tintColor = [UIColor grayColor];
}}