码迷,mamicode.com
首页 > 其他好文 > 详细

自定义一个searchBar

时间:2017-01-09 23:31:04      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:ram   leftview   type   视图   self   super   sea   back   ret   

#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

标签:ram   leftview   type   视图   self   super   sea   back   ret   

原文地址:http://www.cnblogs.com/1018475062qq/p/6266797.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!