封裝的基本步驟
在initWithFrame方法中提供子控件,提供便利的構(gòu)造方法
在layoutSubviews方法中設(shè)置子控件中的frame(一定要調(diào)用super的layoutSubviews)
增加模型屬性,在模型屬性的set方法中設(shè)置數(shù)據(jù)到子控件上
-(UIImageView*)iconView
{
if(_iconView==nil)
{
UIImageView *iconView = [[UIImageView alloc] init];
iconView.backgroundColor = [UIColor blueColor];
[self addSubview:iconView];
_iconView=iconView;
}
return _iconView;
}
-(UILabel*)namelabel
{
if(_namelabel==nil)
{
// 添加文字
UILabel *namelabel = [[UILabel alloc] init];
namelabel.font = [UIFont systemFontOfSize:11];
namelabel.textAlignment = NSTextAlignmentCenter;
namelabel.backgroundColor=[UIColor orangeColor];
[self addSubview:namelabel];
_namelabel=namelabel;
}
return _namelabel;
}
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者