iOS 简单的自定义搜索栏

自定义一个textFiled  重写init方法,在init方法中设置textFiled的一些属性,例如leftView(可以建个imageView,设置图片)、lleftViewMode(设置图片的位置)、backgound、placeholder、字体颜色或大小等。

lleftViewMode是个枚举类型,具体效果可以都试一下。

在自定义CustomSearchBar 的.h文件

#import@interface CustomSearchBar : UITextField

+(instancetype) searchBar;

@end

在自定义CustomSearchBar 的.m文件

+(instancetype) searchBar

{

return [[self alloc] init];

}

//需要时调用

self.navigationItem.titleView = [CustomSearchBar searchBar];

你可能感兴趣的:(iOS 简单的自定义搜索栏)