tableView和collectionView刷新的三种方法

1、刷新一行

    NSIndexPath *indexPath=[NSIndexPath indexPathForRow:3 inSection:0];

    NSArray *indexArray=[NSArray arrayWithObject:indexPath];

    [addTab reloadRowsAtIndexPaths:indexArray withRowAnimation:UITableViewRowAnimationNone

];

2.刷新一个分区

NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:indexPath.section];

    [tableView reloadSections:indexSet withRowAnimation:UITableViewRowAnimationNone

];

3.刷新整个tableview

[tableView reloadData];

你可能感兴趣的:(tableview)