0

我正在尝试在 iPad 的 UITableViewCell 中添加 UITextView,由于某种原因,我的 UITextView 没有占用 UITableViewCell 的整个高度/宽度。这是我声明单元格的方式

UITextView *textView = [[UITextView alloc]initWithFrame:cell.frame];
[textView setBackgroundColor:[UIColor redColor]];
[cell.contentView addSubview:textView];

虽然看起来像这样 在此处输入图像描述

提前致谢。

4

3 回答 3

0

自动调整大小的面具工作... flexwidth 和 flexheight

于 2012-11-08T16:47:25.923 回答
0

试试这个:textView.contentSize = [cell.contentView.frame.size];

于 2012-09-24T23:48:40.657 回答
0

您希望大小为 (cell.contentView.frame.size.width, cell.contentView.frame.size.height),原点为 (0,0)。然后将其添加到 cell.contentView。框架原点是相对于 textView 的超级视图,在本例中是 cell.contentView。

于 2012-09-24T23:50:58.500 回答