gpt4 book ai didi

iphone - 一个 UITableView 中的两种不同的单元格类型

转载 作者:行者123 更新时间:2023-12-03 19:42:03 25 4
gpt4 key购买 nike

大家好,我对如何在一个具有两个部分的 UITableView 中使用两种不同的单元格类型感到非常困惑。第一部分应返回一个大单元格,其中包含大量文本,另一部分应返回三个单元格,以导航到其他 View 。我尝试过这样的:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
//NSUInteger section;
static NSString *CellIdentifier1 = @"CellIdentifier";
static NSString *CellIdentifier2 = @"Cell";

if (indexPath.section == 0) {

CustomTableCell *cell = (CustomTableCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier1];
if (cell == nil)
{
[[NSBundle mainBundle] loadNibNamed:@"CustomTableCell" owner:self options:nil]; cell = [self customTableCell];
[self setCustomTableCell:nil];
}
return cell;
}
else if (indexPath.section == 1) {

cTableViewCell *cell = (cTableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier2];
if (cell == nil)
{
[[NSBundle mainBundle] loadNibNamed:@"cTableViewCell" owner:self options:nil];
cell = [[cTableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier2];
[self setCustomTableCell:nil];
}
// Configure the cell...
NSUInteger row = [indexPath row];
cell.textLabel.text = [array objectAtIndex:row];
return cell;
}
return cell;
}

我在此处设置了各部分中单元格的高度:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSUInteger section;
if (section == 0) {
return [indexPath row] + 80;
}
else
{
return [indexPath row] + 44;
}

}

我收到此错误:“cell”未声明(首先使用此函数)。 :( 我真的希望你能帮助我。提前致谢

最佳答案

tableView:cellForRowAtIndexPath:的末尾,使其return nil;而不是return cell;

关于iphone - 一个 UITableView 中的两种不同的单元格类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6089857/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com