我有以下代码:
- (CGFloat)tableView:(UITableView *)_tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
PostTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
return cell.imageView.frame.size.height + 40;
}
我想要做的是能够以某种方式访问单元格的属性。我希望单元格的高度等于单元格图像视图中图像的高度。我认为这行不通。