刷新某行cell

来源:互联网 发布:淘宝分享领红包 编辑:程序博客网 时间:2024/05/16 05:23

//取到要刷新的行

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


 NSArray *indexArray=[NSArray  arrayWithObject:indexPath_1];

//刷新某行

 [myTableView  reloadRowsAtIndexPaths:indexArray withRowAnimation:UITableViewRowAnimationAutomatic];
0 0
原创粉丝点击