我在UITextView
中有一个UITableViewCell
。 UITextView
文本仅出现在前几个可见单元格中,然后在滚动显示时消失。
如果禁用TextView滚动,则一切正常。所以这是因为 在另一个scrollview(tableview的)中有一个scrollview(textview的)
有没有办法在表格视图单元格内使用固定高度的可滚动文本视图
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
guard let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as? CustomCell else { return CustomCell() }
cell.myTextView.text = cellData.text
return cell
}
答案 0 :(得分:0)
我为textContainerInset
属性设置了错误的值,因此,文本在滚动显示中消失了。