我在谷歌上搜索这个,但我总是找到关于它的非常复杂的解决方案。我有一个具有不可编辑的可滚动UITextView的单元格,我只想将该单元格的高度增加到一个常量值。我该怎么做?实际上我正在使用下一个代码将UITextView添加到单元格中。
cell.contentView.bounds = CGRectMake(0, 0, cell.frame.size.width, cell.frame.size.height);
UITextView *textView = [[UITextView alloc] initWithFrame:cell.contentView.bounds];
textView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
textView.editable = NO;
textView.scrollEnabled = YES;
textView.backgroundColor = [UIColor clearColor];
textView.text = self.description;
[cell.contentView addSubview:textView];
[textView release];
感谢阅读。