0

我正在尝试动态重新计算包含UITextView. 单元格的高度取决于 UITextView 的高度。

下面的源代码重新计算表格中每个单元格的高度。这是来自 的一些文本NSDictionary。重新计算所有高度后,我用包含在数组 heightCells 中的新高度重新加载我的表格视图;

UITextView *tempTextView = [[UITextView alloc] init];
UIFont *font = [UIFont fontWithName:@"Helvetica" size:16.0];
[tempTextView setFrame:CGRectMake(10, 63, 300, 9999)];
[tempTextView setFont:font];
NSString *str =  [d valueForKey:@"definition"]; // set long text
tempTextView.text = str;
CGRect frame = tempTextView.frame;
frame.size.height = tempTextView.contentSize.height + 20.0;
tempTextView.frame = frame;
[tempTextView sizeToFit];
int height = tempTextView.frame.size.height + 150.0; // set padding 150.0 px
[heightCells addObject:[NSNumber numberWithFloat:height]];

UITableView方法:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return [[heightCells objectAtIndex:indexPath.row] floatValue];
}

在非视网膜显示器上一切正常并且重新计算的高度正确,但在视网膜显示器上我有重新计算的问题。我知道视网膜而不是视网膜有一个 320x480 点视图,它不应该影响重新计算。但就我而言,这是出现的。

请看下面的截图。正如您在屏幕截图中看到的,共享按钮后的底部填充与视网膜显示不同,而不是视网膜显示。而且我不知道这是哪种问题。

视网膜

不是视网膜

感谢帮助!

4

1 回答 1

1

似乎tempTextView' 的框架在UITableViewCell. 我在这个答案中描述了我的工作技术。

于 2012-05-12T22:57:02.023 回答