美文网首页
UITableView里Cell的复用详解

UITableView里Cell的复用详解

作者: 骆小喵 | 来源:发表于2016-08-22 17:20 被阅读1208次

    在UITableView中Cell的复用方法有两种:dequeueReusableCellWithIdentifier:forIndexPath: 和dequeueReusableCellWithIdentifier:,那么这两个方法有什么区别呢?

    一、 dequeueReusableCellWithIdentifier:forIndexPath:是iOS 6之后新出的方法,调用时肯定会返回一个Cell,不必使用Cell的 initWithStyle:reuseIdentifier:进行新建,但使用时必须先进行Cell的注册,否则会报错
    reason: 'unable to dequeue a cell with identifier Cell - must register a nib or a class for the identifier or connect a prototype cell in a storyboard'

    Cell的注册方法:
    1.代码创建的Cell注册方法:

     - (void)registerClass:(nullable Class)cellClass forCellReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(6_0);
    

    示例:

    [_tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"ID"];
    

    2.Xib创建的Cell注册方法:

     - (void)registerNib:(nullable UINib *)nib forCellReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(5_0);
    

    示例:

    [_tableView registerNib:[UINib nibWithNibName:@"XXXCell" bundle:nil] forCellReuseIdentifier:@"XXXCell"];
    

    3.在StoryBoard上创建的Cell系统会自动进行注册,不需要再注册。

    二、dequeueReusableCellWithIdentifier:这个方法使用时可以不进行注册,但调用时返回的值有可能会为空,所以需要在cell的tableView:cellForRowAtIndexPath:方法里需要进行判断返回的值是否为空,如果为空需要调用 initWithStyle:reuseIdentifier:方法进行创建

    例如:

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"ID"];
        if (cell == nil) {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"ID"];
        }
        return  cell;
    }
    

    相关文章

      网友评论

          本文标题:UITableView里Cell的复用详解

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