0

我已经使用 XIB 成功创建并链接了单元格,但查询是如何将不同的标识符(reuseIdentifier)分配给 UITableView 的不同单元格?假设我有一个注册表单的 tableView ...所以我希望第一个单元格具有标识符“nameCell”下一个“passwordCell”等等。

如果不使用 XIB,我可以通过使用索引识别单元格的用途来实现这一点,但只是想知道这是否可以做到。

问候, Dhanesh。

4

1 回答 1

1

如果您在同一个表中有不同的单元格类型,这是很有可能的,事实上,这是必要的。这是我的一个项目中的一个示例:

NSString *CellIdentifier = @"Cell";

if ((indexPath.section > 0) && (indexPath.row == [tableView numberOfRowsInSection:indexPath.section] - 1)) {
    CellIdentifier = @"GreenCell";
}
else {
    CellIdentifier = @"StandardCell";
}
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
于 2011-03-31T01:53:06.013 回答