WEB开发网
开发学院手机开发iPhone 开发 iOS中UITableView刷新单行数据的方法 阅读

iOS中UITableView刷新单行数据的方法

 2012-12-27 13:35:14 来源:WEB开发网   
核心提示: [tableView reloadData];可以将整个tableview的数据刷新,但有些时候我们可能只更改了某一行或多行的数据,iOS中UITableView刷新单行数据的方法,不想全部重新来过,怎么办呢?这就要用到下面这个方法了

 [tableView reloadData];可以将整个tableview的数据刷新,但有些时候我们可能只更改了某一行或多行的数据,不想全部重新来过,怎么办呢?

这就要用到下面这个方法了。

- (void)reloadRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation NS_AVAILABLE_IOS(3_0);

示例代码如下:

NSIndexPath *indexPath_1=[NSIndexPath indexPathForRow:1 inSection:0];

NSArray *indexArray=[NSArray arrayWithObject:indexPath_1];

[regTableView reloadRowsAtIndexPaths:indexArray withRowAnimation:UITableViewRowAnimationAutomatic];

Tags:iOS UITableView 刷新

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接