如何将表格单元格分成两部分?
答案 0 :(得分:1)
表格单元格默认分为三个部分,左侧是图像,中间是文本标签,右侧是附件视图。 如果你想要更多的分区或自定义它们,你必须通过继承UITableViewCell来自定义表格单元格。
答案 1 :(得分:0)
您只需将2个SubView添加到单元格中,并嵌套您想要的内容。
答案 2 :(得分:0)
正如shani所说, 用它的框架创建两个子视图并将它们添加到单元格上。 这里我将展示样本结构,
UITableViewCell *cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"cell"];
UILabel *label1=//create a label1 with frame
UILabel *label2=//create a label2 with frame
[cell.contentView addSubview:label1];
[cell.contentView addSubview:label2];