iOS点击按钮移动cell

前些天遇到这样一个需求,点击cell的按钮 需要上下移动该cell.在这里记录一下 方便以后查阅.

效果是这样的:

下面列出完成这个需求的过程 所注意的点:

1.实现点击顶部按钮、底部按钮的action

W_S
    cell.upTapBlock = ^(UIButton *sender) {
        if (indexPath.row == 0) {
            return ;
        }
        //sourceIndexPath是被点击cell的IndexPath
        NSIndexPath *sourceIndexPath = [NSIndexPath indexPathForRow:indexPath.row inSection:0];
        NSIndexPath *destinationIndexPath = [NSIndexPath indexPathForRow:indexPath.row - 1 inSection:0];

        [self.discussMutableMsgs exchangeObjectAtIndex:sourceIndexPath.row withObjectAtIndex:destinationIndexPath.row];
        //移动cell的位置
        [weakSelf.previewTable moveRowAtIndexPath:sourceIndexPath toIndexPath:destinationIndexPath];
        
        [weakSelf.previewTable reloadRowsAtIndexPaths:@[sourceIndexPath,destinationIndexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
        
    };

    
    cell.downTapBlock = ^(UIButton *sender) {
        if (indexPath.row == self.discussMutableMsgs.count - 1) {
            return ;
        }
        
        //sourceIndexPath是被点击cell的IndexPath
        NSIndexPath *sourceIndexPath = [NSIndexPath indexPathForRow:indexPath.row inSection:0];
        NSIndexPath *destinationIndexPath = [NSIndexPath indexPathForRow:indexPath.row + 1 inSection:0];

        [self.discussMutableMsgs exchangeObjectAtIndex:sourceIndexPath.row withObjectAtIndex:destinationIndexPath.row];
        //移动cell的位置
        [weakSelf.previewTable moveRowAtIndexPath:sourceIndexPath toIndexPath:destinationIndexPath];
        
        [weakSelf.previewTable reloadRowsAtIndexPaths:@[sourceIndexPath,destinationIndexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
        
    };

2.注意通知系统哪些行可以移动
-(BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath{
    return YES;
}
还需要注意的是 cell 复用会造成bug,于是在给cell 绑定数据的时候 
[self.contentView removeAllSubviews];
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 2017-09-11 星期一 晴 今天上午和妹妹姥姥姥爷去植物园玩儿,回来打电话给妈妈是下饭馆。饭后我拉着妈妈去上...
    南番娘娘阅读 321评论 0 0
  • 乔治·奥威尔以隐喻的形式描写了革命的发生、发展以及革命的变质、革命的被背叛和残酷的革命斗争。 农场里的一头猪在提出...
    胡桃夹子怪阅读 1,398评论 1 5
  • I:很多人会认为没有时间打理自己,甚至认为这样做是非常可耻的事情,如果我能够调整好自己的精神和心态,花些时间吃些营...
    彤彤妈_子叶阅读 159评论 0 1
  • 最伤心的不外乎守着你的信息,而你当不以为然
    抚伏阅读 160评论 0 0