美文网首页
自定义cell

自定义cell

作者: 5e6b9ff4ae58 | 来源:发表于2018-12-19 20:44 被阅读0次

    @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

    }

    相关文章

      网友评论

          本文标题:自定义cell

          本文链接:https://www.haomeiwen.com/subject/eheskqtx.html