我有一个表格视图,其中包含我在情节提要中设计的多个原型单元格,但我遇到了高度问题,因为我的第一个单元格与第二个单元格不同,依此类推......我每个单元格都有不同的标识符,并且因为我在情节提要中设计了它们,所以我知道它们是高度的。我的代码中有这个,但它不起作用,有谁知道如何修复它?:
-(CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [[UITableViewCell alloc]init];
switch (indexPath.section)
{
case 1:
cell = [tableView dequeueReusableCellWithIdentifier:@"cell1"];
return 743.0f;
break;
case 2:
cell = [tableView dequeueReusableCellWithIdentifier:@"cell2"];
return 300.0f;
}
}
谢谢你的时间。