如何将单个UITableViewCell的高度设置为常量值?

时间:2010-11-11 14:16:36

标签: objective-c ios uitableview

我在谷歌上搜索这个,但我总是找到关于它的非常复杂的解决方案。我有一个具有不可编辑的可滚动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];

感谢阅读。