自定义一个searchBar
Posted 1018475062
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义一个searchBar相关的知识,希望对你有一定的参考价值。
#import "CZSearchBar.h"
@implementation CZSearchBar
- (instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
self.font = [UIFont systemFontOfSize:13];
self.background = [UIImage imageWithStretchableName:@"searchbar_textfield_background"];
// 设置左边的view
// initWithImage:默认UIImageView的尺寸跟图片一样
UIImageView *imageV = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"searchbar_textfield_search_icon"]];
imageV.width += 10;
imageV.contentMode = UIViewContentModeCenter;
self.leftView = imageV;
// 一定要设置,想要显示搜索框左边的视图,一定要设置左边视图的模式
self.leftViewMode = UITextFieldViewModeAlways;
}
return self;
}
@end
以上是关于自定义一个searchBar的主要内容,如果未能解决你的问题,请参考以下文章