我有 uiimageview 属性可以在我的表格视图中显示图像,并希望让一个特定的表格视图单元格根据 uiimageview 中图像的高度来更改其高度。下面是我所做的。不太确定为什么 tableview 单元格的高度没有改变...... :(
@interface BoatViewController () <UIImagePickerControllerDelegate, UINavigationControllerDelegate, UITextFieldDelegate>
@property (nonatomic, weak) IBOutlet UIImageView *boatImageView;
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
if (indexPath.section == 0 && indexPath.row == 0) {
return self.boatImageView.image.size.height;
}else{
return 44;
}
}