UITableView数据刷新方法总结

2016-07-14  本文已影响185人  来金德瑞

数据刷新的原则

数据刷新方法

[self.tableView reloadData];
[self.tableView reloadRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:0 inSection:0],[NSIndexPath indexPathForRow:1 inSection:0] withRowAnimation:UITableViewRowAnimationLeft];
[self.tableView insertRowsAtIndexPaths:@[
      [NSIndexPath indexPathForRow:0 inSection:0],
      [NSIndexPath indexPathForRow:1 inSection:0]
] 
     withRowAnimation:UITableViewRowAnimationLeft];
[self.tableView deleteRowsAtIndexPaths:@[
        [NSIndexPath indexPathForRow:0 inSection:0],
        [NSIndexPath indexPathForRow:1 inSection:0]
        ]
        withRowAnimation:UITableViewRowAnimationLeft];
上一篇下一篇

猜你喜欢

热点阅读