本文主要是介绍tableView和collectionView刷新的三种方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、刷新一行
NSIndexPath *indexPath=[NSIndexPath indexPathForRow:3 inSection:0];
NSArray *indexArray=[NSArray arrayWithObject:indexPath];
[addTab reloadRowsAtIndexPaths:indexArray withRowAnimation:UITableViewRowAnimationNone
];
NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:indexPath.section];
[tableView reloadSections:indexSet withRowAnimation:UITableViewRowAnimationNone
];
3.刷新整个tableview
[tableView reloadData];
这篇关于tableView和collectionView刷新的三种方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!