uitableview reload row
objective c – How to reload and animate just one UITableView cell/row? – Stack Overflow
objective c – Is it possible to refresh a single UITableViewCell in a UITableView? – Stack Overflow
iphone – Reload specific UITableView cell in iOS – Stack Overflow
后来经过:
证明了:
至少此处,调用reloadRowsAtIndexPaths是没办法工作的。
还只能是调用reloadData
除非之前已经存在对应的cell了。。
但是之前存在的cell,其实又不是对应的此处新增row的cell。。。
所以还是:
对于新增加/插入对应的row所对应的数据的话,只能调用reloadDat才能使得界面刷新正常
而对于之前已经(UI界面上)存在对应的行(UITableViewCell)的话,想要刷新对应的行,才可以通过reloadRowsAtIndexPaths去实现。。