美文网首页
Cell 的xib 关联

Cell 的xib 关联

作者: 西博尔 | 来源:发表于2016-07-12 17:32 被阅读24次

    static NSString *CellIdentifier = @"myBankCard";

    MessageCell *cell = (MessageCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    
    if (cell == nil) {
    
        NSArray *array = [[NSBundle mainBundle] loadNibNamed:@"MessageCell" owner:self options:nil];
    
        cell = [array objectAtIndex:0];
    
        [cell setSelectionStyle:UITableViewCellSelectionStyleGray];
    
    }
    
    return cell;

    相关文章

      网友评论

          本文标题:Cell 的xib 关联

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