当前位置: 代码迷 >> 综合 >> iOS 加载xib cell
  详细解决方案

iOS 加载xib cell

热度:66   发布时间:2023-12-22 18:10:53.0

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

    static NSString *cellIndentifier = @"AccountDetailTableViewCell";//这里的cellID就是cellxib对应的名称

    AccountDetailTableViewCell *celll = (AccountDetailTableViewCell *)[tableView dequeueReusableCellWithIdentifier:cellIndentifier];

    if(nil == celll) {

        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:cellIndentifier owner:self options:nil];

        celll = [nib objectAtIndex:0];

    }

    return celll;

}

  相关解决方案