UItableView中的一些步骤

UItableView中的一些方法

有关UITableView的知识点相对比较简单,一些简单的常用的方法有时间在写上:

下面的几个方法如果只是展示UITableView是用不到的,需要对相应的区段进行操作的时候才会用到。


方法如下:

// Row insertion/deletion/reloading.

//更行的方法
- (void)beginUpdates;  
//允许多个插入/删除行和部分同时动画。嵌套的
- (void)endUpdates;   
//也就是只有insert/delete/reload calls方法或者改变编辑的状态带一个更新的代码段内,否则是没用的,比如:行


//相对于区段(也就是:行)来讲的。
- (void)insertRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation; //插入
- (void)deleteRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;//删除
- (void)reloadRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation NS_AVAILABLE_IOS(3_0);//重新加载
- (void)moveRowAtIndexPath:(NSIndexPath *)indexPath toIndexPath:(NSIndexPath *)newIndexPath NS_AVAILABLE_IOS(5_0);//移动行

//这个相对于段,也就是section来操作的
- (void)insertSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation;//插入
- (void)deleteSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation;//删除
- (void)reloadSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation NS_AVAILABLE_IOS(3_0);//重新加载
- (void)moveSection:(NSInteger)section toSection:(NSInteger)newSection NS_AVAILABLE_IOS(5_0);//移动



版权声明:本文为博主原创文章,未经博主允许不得转载。