0

我有一个带有自定义单元格的表格视图,我正在向其添加一些数据,如下所示:

{

UIImage *img = [UIImage imageNamed:@"black_lab_tideat2b.jpg"];

UIImageView *petPic = (UIImageView *)[cell viewWithTag:101];

UILabel *petName = (UILabel *)[cell viewWithTag:102];

petName.text = [current petName];

}

此数据在 UITableView 中正确显示。

当我尝试使用 commitEditingStyle 删除行时会出现此问题。在我从 sqlite 中删除选定的记录并执行

{
[self.tblListProfiles reloadData];
}

它调整剩余单元格中的图像大小。在我向 sql 添加新记录并使用刷新后,此调整大小的图像变回正常大小

{
[self.navigationController popViewControllerAnimated:YES];
}

你能帮忙吗?

问候

4

1 回答 1

0

确保您的 UITableView 委托实现tableView:heightForRowAtIndexPath:或将rowHeight属性设置为正确的大小。

UITableViewDelegate 参考

UITableView 参考

于 2013-05-19T00:40:46.540 回答