通过NSMutableArray更新tableView [UIRefreshControl]

时间:2017-06-06 21:49:14

标签: ios uitableview nsmutablearray uirefreshcontrol

我从NSMutableArray读取了tableview,并使用UIRefreshControl我需要的是更新NSMutableArray而不会在更新之前崩溃或删除内容。

假设第一次NSMutableArray有4行,刷新过程中NSMutableArray有5行,所以添加了1行。

我用过它,但它崩溃了。

[self.tableView beginUpdates];
[self.objects removeAllObjects];
...
..
Adding new objects in self.objects
...
[self.tableView endUpdates];
[self.tableView reloadData];

任何提示?

0 个答案:

没有答案