我将我的UITableViewCell
的高度设置为我在故事板中指定的高度。
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
return cell.frame.size.height;
}
使用此代码,应用程序崩溃。
答案 0 :(得分:5)
您必须明确设置高度。在-cellForRowAtIndexPath:
中调用– tableView:heightForRowAtIndexPath:
会在两种方法之间创建无限循环。这是表格视图的常见错误。
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath{
return 64; // some value
}