Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 819 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 819 Bytes

CPCellMove

cell 移动-------觉得有用麻烦右上角给个星

/*将外部数据源数组传入,以便在移动cell数据发生改变时进行修改重排/

  • (NSArray *)originalArrayDataForTableView:(CPMoveCellTableView *)tableView;

/*将修改重排后的数组传入,以便外部更新数据源/

  • (void)tableView:(CPMoveCellTableView *)tableView newArrayDataForDataSource:(NSArray *)newArray;

/*选中的cell准备好可以移动的时候/

  • (void)tableView:(CPMoveCellTableView *)tableView cellReadyToMoveAtIndexPath:(NSIndexPath *)indexPath;

/*选中的cell正在移动,变换位置,手势尚未松开/

  • (void)cellIsMovingInTableView:(CPMoveCellTableView *)tableView;

/*选中的cell完成移动,手势已松开/

  • (void)cellDidEndMovingInTableView:(CPMoveCellTableView *)tableView;