iPhone开发UISearchBar学习是本文要学习的内容,主要介绍了UISearchBar的使用,不多说,我们先来看详细内容。关于UISearchBar的一些问题。

1、修改UISearchBar的背景颜色

UISearchBar是由两个subView组成的,一个是UISearchBarBackGround,另一个是UITextField. 要IB中没有直接操作背景的属性。方法是直接将 UISearchBarBackGround移去

  1. seachBar=[[UISearchBar alloc] init];
  2. seachBar.backgroundColor=[UIColor clearColor];
  3. for (UIView *subview in seachBar.subviews)
  4. {
  5. if ([subview isKindOfClass:NSClassFromString(@"UISearchBarBackground")])
  6. {
  7. [subview removeFromSuperview];
  8. break;
  9. }
  10. }

第二种解决的方法:

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

2、

  1. UISearchBar* m_searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 44, 320, 41)];
  2. m_searchBar.delegate = self;
  3. m_searchBar.barStyle = UIBarStyleBlackTranslucent;
  4. m_searchBar.autocorrectionType = UITextAutocorrectionTypeNo;
  5. m_searchBar.autocapitalizationType = UITextAutocapitalizationTypeNone;
  6. m_searchBar.placeholder = _(@"Search");
  7. m_searchBar.keyboardType =  UIKeyboardTypeDefault;
  8. //为UISearchBar添加背景图片
  9. UIView *segment = [m_searchBar.subviews objectAtIndex:0];
  10. UIImageView *bgImage = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Images/search_bar_bg.png"]];
  11. [segment addSubview: bgImage];
  12. //<---背景图片
  13. [self.view addSubview:m_searchBar];
  14. [m_searchBar release];

3:取消UISearchBar调用的键盘

  1. [searchBar resignFirstResponder];

添加UISearchBar的两种方法:

代码

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

在 tableview上添加:

代码

  1. //add Table
  2. UITableView *myBeaconsTableView = [[UITableView alloc]
  3. initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height-40)
  4. style:UITableViewStylePlain];
  5. myBeaconsTableView.backgroundColor = [UIColor whiteColor];
  6. myBeaconsTableView.delegate=self;
  7. myBeaconsTableView.dataSource=self;
  8. [myBeaconsTableView setRowHeight:40];
  9. // Add searchbar
  10. searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0.0, 0.0, self.view.bounds.size.width, 40)];
  11. searchBar.placeholder=@"Enter Name";
  12. searchBar.delegate = self;
  13. myBeaconsTableView.tableHeaderView = searchBar;
  14. searchBar.autocorrectionType = UITextAutocorrectionTypeNo;
  15. searchBar.autocapitalizationType = UITextAutocapitalizationTypeNone;
  16. [searchBar release];
  17. [self.view addSubview:myBeaconsTableView];
  18. [myBeaconsTableView release];

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

copy from http://mobile.51cto.com/iphone-280122.htm

关于UISearchBar的更多相关文章

  1. iOS 如何自定义UISearchBar 中textField的高度

    iOS 如何自定义UISearchBar 中textField的高度 只需设置下边的方法就可以 [_searchBar setSearchFieldBackgroundImage:[UIImage i ...

  2. iOS之搜索框UISearchController的使用(iOS8.0以后替代UISearchBar+display)

    在iOS 8.0以上版本中, 我们可以使用UISearchController来非常方便地在UITableView中添加搜索框. 而在之前版本中, 我们还是必须使用UISearchBar + UISe ...

  3. 更改UIsearchbar 的背景和cancel按钮(转)

    修改背景 searchbar =[[UISearchBar alloc]initWithFrame:CGRectMake(,KTopBarHeight, , KTopBarHeight)]; sear ...

  4. UISearchBar控件-让我们来搞定!(转)

    转载自:http://blog.sina.com.cn/s/blog_7b9d64af0101dfg8.html     最近用到搜索功能.于是,经过不断的研究,终于,有点懂了. 那就来总结一下吧,好 ...

  5. iOS开发——UI进阶篇(十九)UISearchBar控件简介

    最近用到搜索功能.总结一下 搜索,无疑可以使用UISearchBar控件! 那就先了解一下UISearchBar控件吧! UISearchBar控件就是要为你完成搜索功能的一个专用控件.它集成了很多你 ...

  6. IOS开发UISearchBar失去第一响应者身份后,取消按钮不执行点击事件的问题

    在iOS开发中,使用UISearchBar的时候,当搜索框失去焦点的时候,取消按钮是默认不能点击的,如图按钮的颜色是灰色的:  这是因为此时取消按钮的enabled属性被设置为NO了,那么当我们需要让 ...

  7. 修改UISearchBar的背景颜色

    当你看到这篇博客你就已经发现了用_searchBar.backgroundColor = [UIColor clearColor];来设置UISearchBar的颜色完全没有效果: 并且,有些方法是想 ...

  8. iOS UISearchBar 设置取消按钮,回收键盘,并修改cancel为“取消”

    继承协议: UISearchBarDelegate 在代理方法中设置: #pragma mark --- 搜索框开始编辑 --- - (void)searchBarTextDidBeginEditin ...

  9. iOS开发之直接使用UISearchBar

    iOS开发中经常需要使用SearchBar,我们可以选择使用UISearchBar+UISearchController或者UISearchBar+UISearchDisplayController( ...

  10. 自定义UISearchBar

    先上系统默认的UISearchBar,然后用KVO修改 UISearchBar *searchBar = [[UISearchBar alloc]initWithFrame:_topView.boun ...

随机推荐

  1. HDU 1071 The area ——微积分

    [题目分析] 求二次函数和一次函数围成的面积. 先解方程求出一次函数和二次函数. 然后积分. 现在还是不会积分. [代码] #include <cstdio> #include <c ...

  2. Java 线程池的原理与实现学习(二)

    java类库中提供的线程池简介: java提供的线程池更加强大,相信理解线程池的工作原理,看类库中的线程池就不会感到陌生了. execute(Runnable command):履行Ruannable ...

  3. poj 3461 Oulipo,裸kmp

    传送门 Oulipo Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 32373   Accepted: 13093 Desc ...

  4. SecureCRT 配置文件中 找密码

    打开本地电脑如下路径 C:\Users\XXX\AppData\Roaming\VanDyke\Config\Sessions 找到配置文件. 运行命令:python SecureCRTDecrypt ...

  5. LibieOJ 6165 一道水题 (线性筛)

    题目链接 LOJ6165 题目意思其实就是求LCM(1, 2, 3, ..., n) 直接用线性筛求出1到1e8之间的所有质数 然后对于每个质数p,他对答案的贡献为$p^{i}$ 其中$p^{i}$小 ...

  6. git(二):一些简单入门命令

    一.创建仓储(版本库) 可以创建在空目录下创建git仓库,也可以在已有项目里创建git仓储. $ mkdir NewName //仓储名 $ cd Newname //进入到该仓储目录中 $ git ...

  7. Spring Tool Suite (STS) 安装SVN插件

    今天STS安装SVN时遇到很多问题,度娘搜索几个小时才安装成功. 在此记录下安装过程. 我的 STS版本: 安装SVN有两种方式: 方法1:依次选择help->preferences->e ...

  8. CodeWar---将字符串转换为驼峰命名

    Convert string to camel case 将字符串转换为驼峰命名 自己的解法 将不是字母和数字的字符用.取代,再根据点划分数组.将下标不为0的数组首字符大写,剩下全部小写 static ...

  9. 解决树莓派8G的SD卡只能识别3.3G,SD卡扩容

    8GB microSD在Windows下使用Win32 Disk Imager下载映像后,在RPi中只能识别出3.3GB.而本身还有很多容量没有释放出来. 使用sudo raspi-config工具可 ...

  10. Jenkins中的Job配置里缺少“触发远程构建(例如,使用脚本)”选项的问题解决

    如图所示的功能没有出现在Job配置页面,这是由于权限问题导致的,解决方法如下: 1.[系统管理]->[Configure Global Security] 2.配置如下: 3.或者你有第三方权限 ...