gpt4 book ai didi

iphone - 表格 View 重新加载单元格

转载 作者:行者123 更新时间:2023-11-29 11:03:18 26 4
gpt4 key购买 nike

我已经将 TextView 子类化,当高度发生变化时,它会触发委托(delegate)方法。当高度改变时,我想重新加载表格 View 单元格,并增加它的大小

我有一个无法解决的问题,当重新加载表格 View 时键盘消失,我无法解决这个问题。下面是当 TextView 的高度改变时调用的委托(delegate)方法。有什么建议吗?

- (void)textViewHeightChanged:(CGFloat)height
{
if (height > _textViewCellHeight) {
_textViewCellHeight = height;
[[self tableView] reloadRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:4 inSection:0]] withRowAnimation:UITableViewRowAnimationNone];
}
}

最佳答案

tableview 可能导致 textview 在重新加载时退出第一响应者状态。尝试在表重新加载后将 -becomeFirstResponder 发送到您的 TextView 。

关于iphone - 表格 View 重新加载单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14804894/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com