知识点总结22:自定义cell不是调用initWithFrame,而是initWithStyle

  • 自定义tableViewCell
#import "ZGKMeViewCell.h"

@implementation ZGKMeViewCell

// 从xib创建
//- (void)awakeFromNib {
//    [super awakeFromNib];
//    // Initialization code
//}


// 从代码创建,不调用initWithFrame方法,而是调用initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{
    
    // 这里不是直接[super initWithStyle:style reuseIdentifier:reuseIdentifier]方法,而是if....
    if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
        // code
        // 1.如果图片不是正方形的,则可以调整图片的内容模式
        /*
         UIViewContentModeScaleToFill,    // 拉伸来填充整个图
         UIViewContentModeScaleAspectFit, // 等比例拉伸,确保能看到完整的图
         UIViewContentModeScaleAspectFill, // 等比例拉伸,不一定确保能看到完整的图
         */
        //    self.imageView.contentMode = UIViewContentModeScaleAspectFit;
        // 2.设置cell文字颜色
        self.textLabel.textColor = [UIColor darkGrayColor];
        
        // 3.设置cell的进入样式
        self.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
        // 自定义图片,进入样式
        //    self.accessoryView = [[UIImageView alloc] initWithImage:<#(nullable UIImage *)#>];
        
        // 4.设置背景图片(区别于背景颜色self.backgroundColor)
        // 背景图片有拉伸的痕迹,左边比较白,右边比较黑,我们可以设置水平垂直拉伸图片,来解决(找到图片,然后选中后,选择slicing,水平垂直拉伸)
        self.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"mainCellBackground"]];
        //    self.backgroundColor
        
    }
    
    return self;
}


- (void)layoutSubviews{
    [super layoutSubviews];
    
    if (self.imageView.image == nil) { // 如果没有图片就什么都不做
        return;
    }
    
    // imageview, 有图片
    self.imageView.zgk_y = ZGKSmallMargin;
    self.imageView.zgk_height = self.contentView.zgk_height - 2 * ZGKSmallMargin;
    self.imageView.zgk_width = self.imageView.zgk_height;
    
    // label
    self.textLabel.zgk_x = self.imageView.zgk_right + ZGKSmallMargin;
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state
}

@end

  • 2.要用到自定义cell的控制器中(注意cell的重用机制,如果cell没有图片或者文字就给对应的属性赋值为nil)
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    
    // 1.确定cell的标识(写在上面全局变量,不用重复创建)
    
    // 2.从缓存池中取cell
    ZGKMeViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
    if (!cell) {
        // 创建cell,并指定样式和添加重用标识
        cell = [[ZGKMeViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID];
    }
    
    
    if (indexPath.section == 0) {
        cell.textLabel.text = @"登录/注册";
        // 注意点1: cell.imageView是只读属性,要设置其image属性
//        cell.imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"setup-head-default"]];
        cell.imageView.image = [UIImage imageNamed:@"publish-audio"];
    }else{
        cell.textLabel.text = @"离线下载";
        // 注意点二: 如果没有图片要设置为nil比较保险,因为cell会重用
        cell.imageView.image = nil;

    }
    
    return cell;
}

你可能感兴趣的:(知识点总结22:自定义cell不是调用initWithFrame,而是initWithStyle)