首页 > 代码库 > 新浪微博客户端(5)-自定义UISearchBar
新浪微博客户端(5)-自定义UISearchBar
iOS自带的UISearchBar有很多限制,我们可以使用UITextField做出一个类似于SearchBar的效果。
//================================================= // 自定义SearchBar //================================================= // 1.创建一个UITextField作为背景 UITextField *searchBar = [[UITextField alloc] init]; searchBar.width = 420; searchBar.height = 30; searchBar.font = [UIFont systemFontOfSize:14]; searchBar.background = [UIImage imageNamed:@"searchbar_textfield_background"]; // 2.添加左侧的小图标 // UIImage *searchIcon = [UIImage imageNamed:@"searchbar_textfield_search_icon"]; // UIImageView *searchIconView = [[UIImageView alloc] initWithImage:searchIcon]; // 使用此种形式创建出来的ImageView是有默认大小的。 UIImageView *searchIconView = [[UIImageView alloc] init]; searchIconView.image = [UIImage imageNamed:@"searchbar_textfield_search_icon"]; searchIconView.width = 30; searchIconView.height = 30; searchIconView.contentMode = UIViewContentModeCenter; searchBar.leftView = searchIconView; searchBar.leftViewMode = UITextFieldViewModeAlways; self.navigationItem.titleView = searchBar;
最终效果:
新浪微博客户端(5)-自定义UISearchBar
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。