imzyf / ios-swift-learning-notes

📝 iOS Swift Learning Notes - see Issues
MIT License
0 stars 0 forks source link

tableView 中有 textView 的高度适应 #90

Closed imzyf closed 6 years ago

imzyf commented 6 years ago

http://vit0.com/blog/2014/12/25/ios-textview-in-cell/

在 cell 中设置好 text view 的 autolayout,让 cell 可以根据内容自适应大小 text view 中输入内容,根据内容更新 textView 的高度 调用 tableView 的 beginUpdates 和 endUpdates,重新计算 cell 的高度 将 text view 更新后的数据保存,以免 table view 滚动超过一屏再滚回来 text view 中的数据又不刷新成原来的数据了。

imzyf commented 6 years ago

blog