我一直在尝试各种方法,但没有成功改变以下代码......
我有一个nib文件,如果我将所有单元格设置为此工作正常,但我只希望其中一个switch语句具有自定义单元格nib文件。有什么想法吗?
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSUInteger row = [indexPath row];
NSInteger section = [indexPath section];
UITableViewCell *cell;
switch (section)
{
case 0:
cell = [tableView dequeueReusableCellWithIdentifier:@"any-cell"];
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"any-cell"] autorelease];
cell.text = [showTimes objectAtIndex:row];
break;
case 1:
cell = [tableView dequeueReusableCellWithIdentifier:@"any-cell"];
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"any-cell"] autorelease];
cell.text = [showTimes objectAtIndex:row];
break;
default:
cell = [tableView dequeueReusableCellWithIdentifier:@"any-cell"];
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"any-cell"] autorelease];
cell.text = [showTimes objectAtIndex:row];
break;
}
return cell;
}
答案 0 :(得分:7)
你需要做两件事:
initWithFrame:reuseIdentifier:
方法。查看Apple's Table View Programming Guide关于使用笔尖的部分。此外,虽然这在技术上并不需要,但UITableViewCell的initWithFrame:reuseIdentifier:
方法已被弃用,而不是initWithStyle:reuseIdentifier:
。