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);//移动



原文地址:https://www.cnblogs.com/yjbjingcha/p/6938303.html