TableView单元内的可滚动TextView

时间:2018-11-29 10:43:02

标签: ios swift uitableview uiscrollview

我在UITextView中有一个UITableViewCellUITextView文本仅出现在前几个可见单元格中,然后在滚动显示时消失。

如果禁用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
}

1 个答案:

答案 0 :(得分:0)

我为textContainerInset属性设置了错误的值,因此,文本在滚动显示中消失了。