Ios开发IOSiOS开发札记

TableViewCell注册以及我遇到的一些简单的坑

2016-09-21  本文已影响8734人  SunshineBrother

1、系统注册cell的两种方式

【1】、在viewDidLoad 方法里面注册 
 [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"cell"];
【2】、系统推荐用这个方法,这个方法在某些情况下更加能避免循环复用(像你在cell里面修改某个控件内容的时候)
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];
  
  //如果队列中没有该类型cell,则会返回nil,这个时候就需要自己创建一个cell
 if (cell == nil) {
      
  cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
        
    }
}

2、自定制cell

【1】,不使用xib的情况下

    <1>、[self.tableView registerClass:[xxxxCell class] forCellReuseIdentifier:@"cell"];
    xxxxCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell" forIndexPath:indexPath];
  <2>、
 xxxxCell *cell=[tableView dequeueReusableCellWithIdentifier:@"cell"];
  if (cell==nil) {
      cell=[[xxxxCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
}

【2】在使用xib的情况下

<1>、
[tableView registerNib:[UINib nibWithNibName:@"xxxxViewCell" bundle:nil] forCellReuseIdentifier:@"Cell"];
    xxxxCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
<2>、
  xxxxCell *cell=[tableView dequeueReusableCellWithIdentifier:@"cell"];
    if (cell == nil) {
        cell=[[[NSBundle mainBundle]loadNibNamed:@“xxxxCell" owner:self options:nil]lastObject];
    }

在使用自定制cell的时候,如果不使用xib,那么要调一下方法

//创建cell的时候就会默认调用这个方法
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
        //在这里创建你自己的子控件
        self.iconView = [[UIImageView alloc] init];
        self.titleLabel = [[UILabel alloc] init];
        self.detailLabel = [[UILabel alloc] init];
        self.priceLabel = [[UILabel alloc] init];
        self.titleLabel.backgroundColor = [UIColor redColor];
        self.detailLabel.backgroundColor = [UIColor greenColor];
        self.priceLabel.backgroundColor = [UIColor cyanColor];
        
        //添加子控件
        [self.contentView addSubview:self.iconView];
        [self.contentView addSubview:self.titleLabel];
        [self.contentView addSubview:self.detailLabel];
        [self.contentView addSubview:self.priceLabel];
    }
    return self;
}


//即将布局子控件就会调用这个方法,我们在这里完成cell里面子控件的相对布局
- (void)layoutSubviews
{
    //重写这个方法,一定要记得手动调用父类方法。
    [super layoutSubviews];
     
}

在使用xib的时候直接拉控件就可以啦

当一个文件中有多个tableView的时候每一个cell注册一定要使用不同的cellID,不然会报错,还有如果用xib在cell上拉控件的时候要注意不要不小心把控件拉到cell的外边,不然也会报错。报错信息别为
instantiated view controller with identifier "UIViewController-BYZ-38-t0r" from storyboard "Main", but didn't get a UITableView.'

上一篇下一篇

猜你喜欢

热点阅读