我有表格视图,其中包含从数组生成的自定义原型单元格
cellLabel = [[NSArray alloc] initWithObjects:
@"20 Последних новостей",
@"Политика",
@"Экономика",
@"Право",
@"Происшествия",
@"Культура",
@"Здоровье",
@"Технологии",
@"В Мире",
@"Калейдоскоп",
nil];
我的问题是如何在创建单元格时为每个单元格设置自己不同的重用标识符或者我需要做 10 个不同的单元格?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellId = @"Sections";
sectionCell *Cell = [tableView dequeueReusableCellWithIdentifier:CellId];
if (!Cell) {
Cell = [[sectionCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellId];
}
Cell.sectionTitle.text = [cellLabel objectAtIndex:indexPath.row];
return Cell;
}
谢谢