beginUpdates–endUpdates
delete 和insert 这两个 需要写在这个代码块里,系统会自动帮忙实现cell上的控件的更新
- (void)moveRowAtIndexPath:(NSIndexPath *)indexPath toIndexPath:(NSIndexPath *)newIndexPath
系统API说 此方法也要写在里面, 但是发现写不写在里面, 发现都不会走cellforRow的方法,不会去刷新界面.
经过多次调试 发现其实不写也可以实现移动的.,并没有什么影响,唯一要解决的还是cell上的控件更新问题
这个就需要自己实现了
cellForRowAtIndexPath得到 cell , 再去调用刷新界面的方法
时间: 2024-12-31 03:53:51