给tableView 的cell赋值的几种写法

沙星波
2023-12-01

方法一:

    //防止写错

    NSString *cellID = @"";

    

    //1.检查重用池中是否有cell

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];

    //2.判断获取的cell是否为空

    if (cell == nil) {

        

        //若果cell为空,说明重用池中没有cell,需要我们重新创建一个

        cell =

 

     [[[UITableViewCell allocinitWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellID]autorelease];

        

        NSLog(@"创建一个");

    }

    

    //3.重新给cell赋值

    

    NSString *name = [self.sourceArr objectAtIndex:indexPath.row];

    cell.textLabel.text = name;

    

    

    //cell.textLabel.text = @"真帅";

    return cell;


方法二:
       //注册

    [self.tableView registerClass:[UITableViewCell classforCellReuseIdentifier:@"reuse"];


    

    //在cell赋值的方法里面写

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"reuse"];

    //在这块赋值


    return cell;


方法三:

        

    static NSString *CellIdentifier = @"reuse2";

    BOOL nibsRegistered = NO;

    if (!nibsRegistered) {

            

     UINib *nib = [UINib nibWithNibName:NSStringFromClass([LPWorkDayTwoTableViewCell class]) bundle:nil];

     [tableView registerNib:nib forCellReuseIdentifier:CellIdentifier];

    }

    LPWorkDayTwoTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"reuse2"];


    //在这块赋值



    return cell;


 类似资料: