iPhone开发之UISearchBar学习

移动开发 iOS
本文介绍的是iPhone开发之UISearchBar学习,主要介绍了UISearchBar的使用,我们先来看内容。

iPhone开发UISearchBar学习是本文要学习的内容,主要介绍了UISearchBar的使用,不多说,我们先来看详细内容。关于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;  
    }   

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.

第二种解决的方法:

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

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]; 
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.

3:取消UISearchBar调用的键盘

[searchBar resignFirstResponder];  
  • 1.

添加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];    
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.

在 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];  
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.

小结:iPhone开发UISearchBar学习的内容介绍完了,希望本文对你有所帮助。

责任编辑:zhaolei 来源: 互联网
相关推荐

2011-08-10 10:10:21

iPhoneUIPopoverCo

2011-08-15 10:06:22

iPhone开发nib 文件

2011-08-08 10:10:14

iPhone开发 图片 方法

2011-08-09 17:29:29

iPhone文件屏幕

2011-08-08 13:57:19

iPhone开发 打包 DEB

2011-08-11 10:03:43

iPhonecocoaNSRunLoop

2011-08-08 14:57:46

iPhone Autoreleas Property

2011-08-18 10:39:46

iPhone开发界面

2011-08-05 14:48:06

iPhone应用 异步队列

2013-07-23 07:34:54

iOS开发学习适配iphone5

2011-08-22 13:46:15

iPhone开发GameKit 蓝牙

2011-08-09 11:36:41

iPhoneUIPickerVieDEMO

2011-08-11 17:15:54

iPhone归档

2011-08-16 18:42:42

iPhone开发Release

2011-07-18 14:39:53

iPhone SDK UIKit

2011-07-27 09:33:14

iPhone 网络 Web

2011-07-18 14:33:32

2011-08-15 17:38:48

iPhone开发调试工具

2011-08-08 15:56:18

iPhone 震动 NSUserDefa

2011-07-27 11:14:37

iPhone UITableVie
点赞
收藏

51CTO技术栈公众号