2011-08-30 70 views
3

任何人都可以告訴我如何設置UISearchbar的顏色,使其遵循地址簿中使用的搜索欄的顏色?如何設置UISearch欄的顏色

它有淺灰色,取消按鈕的顏色較暗。

我試過代碼:

//Ser color of UISearch bar 
sBar.tintColor = [UIColor lightGrayColor]; 

但無法複製(的按鈕顏色)的顏色和效果。

enter image description here

回答

3

你需要設置你的搜索欄的色調特性。 例如

historySearchBar.tintColor=[UIColor colorWithRed:129.0/255.0f green:129.0/255.0f blue:130.0/255.0f alpha:.80]; 

這會改變搜索欄的顏色。

那麼現在你正在使用灰色,這是默認搜索欄的顏色 嘗試設置其他顏色。 而且您還可以設置搜索欄類型,如黑色,UIBarStyleBlackTranslucent。 享受

相關問題