您好我的应用程序中我想动态创建tableview basen我需要添加具有不同控件的UItableView单元格(cell1 with label,label2),(cell2 with label1,textfield2),(cell3 with label1,segment1)等我在我的Xib中创建了UItableViewCell但是我无法动态加载它们。如果有人知道回复我谢谢
答案 0 :(得分:1)
您必须在cellForRowAtIndexPath方法上执行此操作。这样的事情。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.row == 0) {
return cell0;
} else if (indexPat.row == 1) {
return cell1;
} else if (indexPat.row == 2) {
return cell2;
} else if (indexPat.row == 3) {
return cell3;
}
}
cell0,cell1,cell2,cell3是您在界面构建器上创建并与IBOutlet链接的单元格。