UI_UItableView_AutoCell(自定义cell)

新建类

@interface YadongCell : UITableViewCell

方法

#pragma mark - 赋值方法

- (void)setCellDateWithYadong:(CinemaModel *)sender;

#pragma mark - 自定义高度

+(CGFloat)height;
#pragma  mark - 封装

+ (instancetype)getYadongCellWithTtableView:(UITableView *)tableView;

方法实现

@interface YadongCell ()

@property (nonatomic, strong) UILabel *nameLabel;
@property (nonatomic, strong) UILabel *addrsLabel;
@property (nonatomic, strong) UILabel *trafficLabel;

@end
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        [self createLabel];
    }
    return self;
}

#pragma mark - 创建 label
- (void)createLabel
{
    self.nameLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 10, [UIScreen mainScreen].bounds.size.width - 20, 30)];
    //
    [self.contentView addSubview:self.nameLabel];


    self.addrsLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 45, [UIScreen mainScreen].bounds.size.width - 20, 30)];
    [self.contentView addSubview:self.addrsLabel];


    self.trafficLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 80, [UIScreen mainScreen].bounds.size.width - 20, 30)];

    [self.contentView addSubview:self.trafficLabel];

}

#pragma mark - 赋值方法
- (void)setCellDateWithYadong:(CinemaModel *)sender
{
    self.nameLabel.text = sender.cinemaName;
    self.addrsLabel.text = sender.address;
    self.trafficLabel.text = sender.trafficRoutes;

}

#pragma mark - 自定义高度
+(CGFloat)height;
{
    return 120.0f;
}

#pragma  mark - 封装
+ (instancetype)getYadongCellWithTtableView:(UITableView *)tableView
{
    static NSString *cellIdentifier = @"YadongCell";
    YadongCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];

//    if (cell == nil) {
//        cell = [[YadongCell alloc] initWithStyle:(UITableViewCellStyleDefault) reuseIdentifier:cellIdentifier];
//    }
    return cell;
}
// 给 tableView 注册,不用判断重用池是否为空(上面)
[self.rootView.mainTableView registerClass:[YadongCell class] forCellReuseIdentifier:@"YadongCell"];
// 有几种类型,就要注册几种:可以注册无数次
[self.rootView.mainTableView registerClass:[YadongCell class] forCellReuseIdentifier:@"UITableViewCell"];

实现cell

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    YadongCell *cell = [YadongCell getYadongCellWithTtableView:tableView];
    // 设置cell的值
    [cell setCellDateWithYadong:self.dataArray[indexPath.row]];

    return cell;

}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值