iOS中UISearchBar(搜索框)使用總結(jié)

初始化:UISearchBar繼承于UIView檩小,我們可以像創(chuàng)建View那樣創(chuàng)建searchBar
    UISearchBar * bar = [[UISearchBar alloc]initWithFrame:CGRectMake(20, 100, 250, 40)];    [self.view addSubview:bar];

@property(nonatomic)        UIBarStyle              barStyle; 
這個屬性可以設(shè)置searchBar的搜索框的風(fēng)格禾进,枚舉如下:
typedef NS_ENUM(NSInteger, UIBarStyle) {    UIBarStyleDefault          = 0,//默認(rèn)風(fēng)格 白色搜索框式矫,多出的背景為灰色    UIBarStyleBlack            = 1,//黑色風(fēng)格,黑色的搜索框    //下面兩個枚舉已經(jīng)被禁用,作用和黑色風(fēng)格一樣    UIBarStyleBlackOpaque      = 1, // Deprecated. Use UIBarStyleBlack    UIBarStyleBlackTranslucent = 2, // Deprecated. Use UIBarStyleBlack and set the translucent property to YES};

 
@property(nonatomic,copy)   NSString               *text; 
設(shè)置搜索框中的文字
 
@property(nonatomic,copy)   NSString               *prompt; 
這個屬性的官方解釋是在搜索框頂部顯示一行文字削茁,其實就是背景文字习贫,上圖說明:
   bar.prompt = @"搜索框";   bar.text=@"321111111111111111111111111"

效果如下:
![](http://upload-images.jianshu.io/upload_images/646265-bb7c2dc22740103c.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
 
@property(nonatomic,copy)   NSString               *placeholder;  
和其他文本輸入控件的placeholder相同,在輸入文字時就會消失
@property(nonatomic)        BOOL                    showsBookmarkButton; 
是否在搜索框右側(cè)顯示一個圖書的按鈕肌括,默認(rèn)為NO,YES的效果如下:
![](http://upload-images.jianshu.io/upload_images/646265-4f15754a1bf8623c.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
@property(nonatomic)        BOOL                    showsCancelButton;
是否顯示取消按鈕酣难,默認(rèn)為NO谍夭,YES的效果如下:
![](http://upload-images.jianshu.io/upload_images/646265-67324056d98301d5.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
@property(nonatomic)        BOOL                    showsSearchResultsButton;
是否顯示搜索結(jié)果按鈕,默認(rèn)為NO憨募,YES效果如下:
![](http://upload-images.jianshu.io/upload_images/646265-1155a7f69205cab0.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
 
@property(nonatomic, getter=isSearchResultsButtonSelected) BOOL searchResultsButtonSelected ;
設(shè)置搜索結(jié)果按鈕的選中狀態(tài)
- (void)setShowsCancelButton:(BOOL)showsCancelButton animated:(BOOL)animated;
設(shè)置顯示取消按鈕
@property(nonatomic,retain) UIColor *tintColor;
設(shè)置這個顏色值會影響搜索框中的光標(biāo)的顏色
 
@property(nonatomic,retain) UIColor *barTintColor;
設(shè)置這個顏色會影響搜索框的背景顏色
 
@property (nonatomic) UISearchBarStyle searchBarStyle;
設(shè)置搜索框整體的風(fēng)格紧索,枚舉如下:
typedef NS_ENUM(NSUInteger, UISearchBarStyle) {    UISearchBarStyleDefault,    // currently UISearchBarStyleProminent    UISearchBarStyleProminent,  // 顯示背景    UISearchBarStyleMinimal     // 不顯示背景} NS_ENUM_AVAILABLE_IOS(7_0);

 
@property(nonatomic,assign,getter=isTranslucent) BOOL translucent;
設(shè)置是否半透明
@property(nonatomic)      BOOL       showsScopeBar ;
是否顯示搜索欄的附件選擇按鈕試圖,要想顯示這個試圖菜谣,首先要將這個屬性設(shè)置為YES珠漂,之后給按鈕數(shù)組中添加按鈕,使用下面這個屬性:
@property(nonatomic,copy) NSArray   *scopeButtonTitles 尾膊;
設(shè)置選擇按鈕試圖的按鈕標(biāo)題
@property(nonatomic)      NSInteger  selectedScopeButtonIndex;
設(shè)置一個默認(rèn)的選中按鈕
    bar = [[UISearchBar alloc]initWithFrame:CGRectMake(20, 100, 250, 200)];    bar.showsScopeBar=YES;    bar.scopeButtonTitles = @[@"12",@"2",@"3",@"4"];

![](http://upload-images.jianshu.io/upload_images/646265-2124acef46e94782.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
@property (nonatomic, readwrite, retain) UIView *inputAccessoryView;
鍵盤的附屬試圖
@property(nonatomic,retain) UIImage *backgroundImage;
設(shè)置搜索框的背景圖案
@property(nonatomic,retain) UIImage *scopeBarBackgroundImage;
設(shè)置附屬選擇按鈕視圖的背景圖案
 
- (void)setBackgroundImage:(UIImage *)backgroundImage forBarPosition:(UIBarPosition)barPosition barMetrics:(UIBarMetrics)barMetrics ;  
- (UIImage *)backgroundImageForBarPosition:(UIBarPosition)barPosition barMetrics:(UIBarMetrics)barMetrics
這一對方法可以設(shè)置和獲取某個狀態(tài)枚舉下的搜索框的背景圖案
 
 
- (void)setSearchFieldBackgroundImage:(UIImage *)backgroundImage forState:(UIControlState)state;
- (UIImage *)searchFieldBackgroundImageForState:(UIControlState)state;
這一對方法用于設(shè)置和獲取搜索框中TextField的背景圖案
 
- (void)setImage:(UIImage *)iconImage forSearchBarIcon:(UISearchBarIcon)icon state:(UIControlState)state ;
- (UIImage *)imageForSearchBarIcon:(UISearchBarIcon)icon state:(UIControlState)state ;
這一對方法用于獲取和設(shè)置搜索欄icon圖片的圖案
- (void)setScopeBarButtonBackgroundImage:(UIImage *)backgroundImage forState:(UIControlState)state; 
- (UIImage *)scopeBarButtonBackgroundImageForState:(UIControlState)state;
這一對方法用于設(shè)置和獲取搜索框的附加選擇按鈕視圖的背景圖案
 
 
- (void)setScopeBarButtonDividerImage:(UIImage *)dividerImage forLeftSegmentState:(UIControlState)leftState rightSegmentState:(UIControlState)rightState;
- (UIImage *)scopeBarButtonDividerImageForLeftSegmentState:(UIControlState)leftState rightSegmentState:(UIControlState)rightState;
這一對方法用于獲取和設(shè)置附加選擇按鈕視圖中切換按鈕的圖案
 
- (void)setScopeBarButtonTitleTextAttributes:(NSDictionary *)attributes forState:(UIControlState)state;
- (NSDictionary *)scopeBarButtonTitleTextAttributesForState:(UIControlState)state;
這一對方法用于設(shè)置和獲取切換按鈕標(biāo)題文字的字體屬性字典
 
 
@property(nonatomic) UIOffset searchFieldBackgroundPositionAdjustment;
搜索文字在搜索框中的位置偏移
@property(nonatomic) UIOffset searchTextPositionAdjustment;
textfield在搜索框中的位置偏移
 
- (void)setPositionAdjustment:(UIOffset)adjustment forSearchBarIcon:(UISearchBarIcon)icon;
- (UIOffset)positionAdjustmentForSearchBarIcon:(UISearchBarIcon)icon;
設(shè)置搜索欄中圖片的位置偏移媳危,圖片的枚舉如下:
typedef NS_ENUM(NSInteger, UISearchBarIcon) {    UISearchBarIconSearch, //搜索圖標(biāo)    UISearchBarIconClear, // 清除圖標(biāo)    UISearchBarIconBookmark, // 書本圖標(biāo)    UISearchBarIconResultsList, // 結(jié)果列表圖標(biāo)};

 
下面是搜索框控件的一些代理方法:
 
- (BOOL)searchBarShouldBeginEditing:(UISearchBar *)searchBar;           
將要開始編輯時的回調(diào),返回為NO冈敛,則不能編輯
- (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar;                  
已經(jīng)開始編輯時的回調(diào)
- (BOOL)searchBarShouldEndEditing:(UISearchBar *)searchBar;                
將要結(jié)束編輯時的回調(diào)
- (void)searchBarTextDidEndEditing:(UISearchBar *)searchBar;                   
已經(jīng)結(jié)束編輯的回調(diào)
- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText;   編輯文字改變的回調(diào)
- (BOOL)searchBar:(UISearchBar *)searchBar shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text ; 
編輯文字改變前的回調(diào)待笑,返回NO則不能加入新的編輯文字
- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar;       
搜索按鈕點擊的回調(diào)
- (void)searchBarBookmarkButtonClicked:(UISearchBar *)searchBar;             
書本按鈕點擊的回調(diào)
- (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar;               
取消按鈕點擊的回調(diào)
- (void)searchBarResultsListButtonClicked:(UISearchBar *)searchBar; 
搜索結(jié)果按鈕點擊的回調(diào)
 
- (void)searchBar:(UISearchBar *)searchBar selectedScopeButtonIndexDidChange:(NSInteger)selectedScope;
搜索欄的附加試圖中切換按鈕觸發(fā)的回調(diào)
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市抓谴,隨后出現(xiàn)的幾起案子暮蹂,更是在濱河造成了極大的恐慌,老刑警劉巖癌压,帶你破解...
    沈念sama閱讀 212,332評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件仰泻,死亡現(xiàn)場離奇詭異,居然都是意外死亡滩届,警方通過查閱死者的電腦和手機(jī)集侯,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,508評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來帜消,“玉大人棠枉,你說我怎么就攤上這事∪纾” “怎么了术健?”我有些...
    開封第一講書人閱讀 157,812評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長粘衬。 經(jīng)常有香客問我,道長,這世上最難降的妖魔是什么稚新? 我笑而不...
    開封第一講書人閱讀 56,607評論 1 284
  • 正文 為了忘掉前任勘伺,我火速辦了婚禮,結(jié)果婚禮上褂删,老公的妹妹穿的比我還像新娘飞醉。我一直安慰自己,他們只是感情好屯阀,可當(dāng)我...
    茶點故事閱讀 65,728評論 6 386
  • 文/花漫 我一把揭開白布缅帘。 她就那樣靜靜地躺著,像睡著了一般难衰。 火紅的嫁衣襯著肌膚如雪钦无。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,919評論 1 290
  • 那天盖袭,我揣著相機(jī)與錄音失暂,去河邊找鬼。 笑死鳄虱,一個胖子當(dāng)著我的面吹牛弟塞,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播拙已,決...
    沈念sama閱讀 39,071評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼决记,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了倍踪?” 一聲冷哼從身側(cè)響起霉涨,我...
    開封第一講書人閱讀 37,802評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎惭适,沒想到半個月后笙瑟,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,256評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡癞志,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,576評論 2 327
  • 正文 我和宋清朗相戀三年往枷,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片凄杯。...
    茶點故事閱讀 38,712評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡错洁,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出戒突,到底是詐尸還是另有隱情屯碴,我是刑警寧澤,帶...
    沈念sama閱讀 34,389評論 4 332
  • 正文 年R本政府宣布膊存,位于F島的核電站导而,受9級特大地震影響忱叭,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜今艺,卻給世界環(huán)境...
    茶點故事閱讀 40,032評論 3 316
  • 文/蒙蒙 一韵丑、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧虚缎,春花似錦撵彻、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,798評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至创坞,卻和暖如春碗短,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背摆霉。 一陣腳步聲響...
    開封第一講書人閱讀 32,026評論 1 266
  • 我被黑心中介騙來泰國打工豪椿, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人携栋。 一個月前我還...
    沈念sama閱讀 46,473評論 2 360
  • 正文 我出身青樓搭盾,卻偏偏與公主長得像,于是被迫代替她去往敵國和親婉支。 傳聞我的和親對象是個殘疾皇子鸯隅,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,606評論 2 350

推薦閱讀更多精彩內(nèi)容