动态 UITableViewCell 高度内的动态 UITextView?
我只是找不到解决这个问题的好方法。我有一个 UITextView 子类化在 UITableViewCell 中。现在我有 TextView 动态调整大小,但单元格没有。这是因为 heightForRowAtIndexPath 仅在加载时被调用。我怎样才能在不调用 cellForRowWithIndexPath (即 reloadData)的情况下调用此函数...
任何帮助都会很棒!谢谢!
I am just not finding a good solution to this issue. I have a UITextView subclassed in a UITableViewCell. Right now I have the TextView dynamically resizing, but the cell is not. That is because the heightForRowAtIndexPath is only being called on load. How can I have this called without calling cellForRowWithIndexPath (i.e. reloadData)...
Any help would be great! thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它实际上很简单,只需在 uitableviewcell 中使用类似的东西
即可 记不清了,但是 uitableviewcell 的超级视图应该是 uitableview。
Its actually pretty simple, just use something like this inside the uitableviewcell
Can't remember, but the superview of uitableviewcell should be the uitableview.