我正在尝试在 iPad 的 UITableViewCell 中添加 UITextView,由于某种原因,我的 UITextView 没有占用 UITableViewCell 的整个高度/宽度。这是我声明单元格的方式
UITextView *textView = [[UITextView alloc]initWithFrame:cell.frame];
[textView setBackgroundColor:[UIColor redColor]];
[cell.contentView addSubview:textView];
虽然看起来像这样
提前致谢。