平滑调整Cell的高度
2016-04-15 本文已影响46人
frank_kk
前提是你的UITableView是根据内容的多少动态调整Cell高度的。
当Cell要展示的内容发生变化时,可用下面的方式,平滑的调整Cell的高度。
1.[tableView beginUpdates];
2.update your model.
3.update your cell content.
4.[tableView endUpdates];
前提是你的UITableView是根据内容的多少动态调整Cell高度的。
当Cell要展示的内容发生变化时,可用下面的方式,平滑的调整Cell的高度。
1.[tableView beginUpdates];
2.update your model.
3.update your cell content.
4.[tableView endUpdates];