@property(nonatomic,strong) UIImageView *imgV;
-(UIImageView *)imgV{
if(!_imgV){
_imgV= [[UIImageView alloc]initWithFrame:CGRectMake(10, 10, 70, 70)];
_imgV.layer.masksToBounds =YES;
_imgV.layer.cornerRadius = 35;
}
return _imgV;
}
// cell咋来的???
// 重写父类的构造方法
-(instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString*)reuseIdentifier{
// 子类调用父类的方法
if(self= [superinitWithStyle:stylereuseIdentifier:reuseIdentifier]){
// cell 添加控件
// 注意 必须用self.
[selfaddSubview:self.imgV];
}
return self; // cell
}
网友评论