国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > iOS > 正文

IOS 開發(fā)之UISearchBar 詳解及實例

2019-10-21 18:50:06
字體:
供稿:網(wǎng)友

IOS UISearchBar 詳解

iPhone開發(fā)之UISearchBar學(xué)習(xí)是本文要學(xué)習(xí)的內(nèi)容,主要介紹了UISearchBar的使用,不多說,我們先來看詳細內(nèi)容。關(guān)于UISearchBar的一些問題。

1、修改UISearchBar的背景顏色

UISearchBar是由兩個subView組成的,一個是UISearchBarBackGround,另一個是UITextField. 要IB中沒有直接操作背景的屬性。方法是直接將 UISearchBarBackGround移去 

seachBar=[[UISearchBar alloc] init]; seachBar.backgroundColor=[UIColor clearColor]; for (UIView *subview in seachBar.subviews)  {  if ([subview isKindOfClass:NSClassFromString(@"UISearchBarBackground")])     {  [subview removeFromSuperview];  break; }  } 

第二種解決的方法:

[[searchbar.subviews objectAtIndex:0]removeFromSuperview]; 

2、

UISearchBar* m_searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 44, 320, 41)]; m_searchBar.delegate = self; m_searchBar.barStyle = UIBarStyleBlackTranslucent; m_searchBar.autocorrectionType = UITextAutocorrectionTypeNo; m_searchBar.autocapitalizationType = UITextAutocapitalizationTypeNone; m_searchBar.placeholder = _(@"Search"); m_searchBar.keyboardType = UIKeyboardTypeDefault; //為UISearchBar添加背景圖片 UIView *segment = [m_searchBar.subviews objectAtIndex:0]; UIImageView *bgImage = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Images/search_bar_bg.png"]]; [segment addSubview: bgImage]; //<---背景圖片 [self.view addSubview:m_searchBar]; [m_searchBar release]; 

3:取消UISearchBar調(diào)用的鍵盤

[searchBar resignFirstResponder]; 

添加UISearchBar的兩種方法:

代碼

UISearchBar *mySearchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0.0, 0.0, self.view.bounds.size.width, 45)];      mySearchBar.delegate = self;      mySearchBar.showsCancelButton = NO;      mySearchBar.barStyle=UIBarStyleDefault;      mySearchBar.placeholder=@"Enter Name or Categary";      mySearchBar.keyboardType=UIKeyboardTypeNamePhonePad;      [self.view addSubview:mySearchBar];      [mySearchBar release];  

在 tableview上添加:  

代碼 

 //add Table     UITableView *myBeaconsTableView = [[UITableView alloc]                        initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height-40)                         style:UITableViewStylePlain];     myBeaconsTableView.backgroundColor = [UIColor whiteColor];     myBeaconsTableView.delegate=self;     myBeaconsTableView.dataSource=self;     [myBeaconsTableView setRowHeight:40];     // Add searchbar      searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0.0, 0.0, self.view.bounds.size.width, 40)];     searchBar.placeholder=@"Enter Name";     searchBar.delegate = self;     myBeaconsTableView.tableHeaderView = searchBar;     searchBar.autocorrectionType = UITextAutocorrectionTypeNo;     searchBar.autocapitalizationType = UITextAutocapitalizationTypeNone;     [searchBar release];     [self.view addSubview:myBeaconsTableView];     [myBeaconsTableView release]; 

小結(jié):iPhone開發(fā)之UISearchBar學(xué)習(xí)的內(nèi)容介紹完了,希望本文對你有所幫助


注:相關(guān)教程知識閱讀請移步到IOS開發(fā)頻道。
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 肇东市| 同德县| 芦山县| 区。| 萍乡市| 临猗县| 定陶县| 二连浩特市| 得荣县| 锡林浩特市| 习水县| 萍乡市| 云南省| 河津市| 上杭县| 泰和县| 股票| 昔阳县| 油尖旺区| 桂阳县| 肥城市| 嫩江县| 肃南| 永善县| 余姚市| 瑞昌市| 江北区| 怀柔区| 湖南省| 论坛| 固阳县| 无棣县| 正蓝旗| 南和县| 环江| 民勤县| 漯河市| 榕江县| 平利县| 江山市| 绥江县|