我在 tableviewcell 中有一个可编辑的 textview,就像苹果联系人中的字段注释一样,但是 tableviewcell 不会随着 textview 调整大小。我认为问题出在这种方法上。有谁能够帮我?
- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.section == 0 && indexPath.row == 0)
{
if (self.textView.contentSize.height >= 44)
{
float height = [self heightForTextView:self.textView containingString:self.model];
return height + 8; // a little extra padding is needed
}
else
{
return self.tableView.rowHeight;
}
}
else
{
return self.tableView.rowHeight;
}
}