UITextView未显示

时间:2017-07-12 10:36:16

标签: ios uitextview invisible

我在自定义UITextView中有UITableViewCell

有时,当我编辑UITextView文本并删除所有文本并保存时;然后UITableView将重新加载数据,现在UITextView在单元格中不可见。

显示如下。在第二个单元格中,没有UITextView标签和单元格分隔符之间也没有间隙。

有时会发生这种情况,尤其是UITextview中没有文字时。

Label1的

的UITextView

Label2的

LABEL3

UITextView的。

这可能是什么问题?

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    // grab the reusable cell and fill it with data
    MyCustomViewCell* cell = [tableView dequeueReusableCellWithIdentifier:@"DefaultCell"];
    [cell setName:nameSet[indexPath.row]];
    [cell setDescription:descriptionSet[indexPath.row]];

    return cell;
}

我在初始化时给出了以下内容:

    m_tableView.estimatedRowHeight = 80.0f;
m_tableView.rowHeight = UITableViewAutomaticDimension;

0 个答案:

没有答案