美文网首页
系统自定义cell

系统自定义cell

作者: ljzza | 来源:发表于2019-05-06 10:16 被阅读0次

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];
    if (!cell) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
    }
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    return cell;

    相关文章

      网友评论

          本文标题:系统自定义cell

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