首页 > 网站 > 建站经验 > 正文

iOS中UITable、View刷新单行数据的方法

2019-11-02 14:42:41
字体:
来源:转载
供稿:网友

 [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 r

顺口溜[www.62-6.com/1/marenbaodian/]
eloadRowsAtIndexPaths:indexArray withRowAnimation:UITableViewRowAnimationAutomatic];

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表