UIView的使用——如何自定义一个视图

主要是两个方法:

- (id)initWithFrame:(CGRect)frame

{

    self = [super initWithFrame:frame];

    if (self) {

        

        //初始化属性

        [self initProperty];

        

        //创建组件

        [self createComponent];

        

    }

    return self;

}


- (void)initProperty

{

    self.backgroundColor = UIColorFromRGB_hex(0xf2a2b2f);

}


- (void)createComponent

{

    _leftButton = [UIButton buttonWithType:UIButtonTypeCustom];

    _leftButton.backgroundColor = [UIColor clearColor];

    

    _rightButton = [UIButton buttonWithType:UIButtonTypeCustom];

    _rightButton.backgroundColor = [UIColor clearColor];

    

    _leftLabel = [[UILabel alloc] init];

    _leftLabel.backgroundColor = [UIColor clearColor];

    _leftLabel.textColor = UIColorFromRGB_hex(0xf4f4f4);

    _leftLabel.font = [UIFont boldSystemFontOfSize:18.f];

    _leftLabel.textAlignment = NSTextAlignmentLeft;

    

    _titleLabel = [[UILabel alloc] init];

    _titleLabel.backgroundColor = [UIColor clearColor];

    _titleLabel.textColor = UIColorFromRGB_hex(0xf4f4f4);

    _titleLabel.font = [UIFont boldSystemFontOfSize:20.f];

    _titleLabel.textAlignment = NSTextAlignmentCenter;

    

    _bgImageView = [[UIImageView alloc] init];

    

    [self addSubview:_leftButton];

    [self addSubview:_rightButton];

    [self addSubview:_leftLabel];

    [self addSubview:_titleLabel];

    [self addSubview:_bgImageView];

}


初始化做的事情只是创建一些组件,而不去设置尺寸,所有组件的尺寸放在下面这个方法中去做:

- (void)layoutSubviews

{

    float offset = 0.f;

    if (self.bounds.size.height>44) {

        offset = 8.f;

    }

    _leftButton.frame = CGRectMake(0, offset+(self.bounds.size.height-30)/2, 90, 40);

    _leftLabel.frame = CGRectMake(_leftButton.frame.origin.x+_leftButton.frame.size.width+8, offset+(self.bounds.size.height-20)/2, 45, 20);

    _titleLabel.frame = CGRectMake(0, offset+(self.bounds.size.height-30)/2, self.bounds.size.width, 30);

    _rightButton.frame = CGRectMake(self.bounds.size.width-90, offset+(self.bounds.size.height-30)/2, 90, 40);

    _bgImageView.frame = CGRectMake(0, self.frame.size.height-1, self.frame.size.width, 1);

}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值