UICollectionView实现拖拽编辑

需求

前段时间我们公司要实现一个类似网易新闻的栏目编辑功能,于是乎我开始在网上查阅各种资料,但是找到的demo都不尽如人意。现在这个功能已经初步完成了,我觉得还是有必要分享一下这个实现历程的。

实现

  • Interactive Reordering(iOS9 UICollectionView新特性)

使用这种方法就很容易实现这个功能。你需要在UICollectionView上添加一个长按手势,然后在手势的响应方法里面分别让begin,move,end,cancel对应调用下面这四个方法,就能实现拖拽cell这个功能了。

- (BOOL)beginInteractiveMovementForItemAtIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(9_0); 
- (void)updateInteractiveMovementTargetPosition:(CGPoint)targetPosition NS_AVAILABLE_IOS(9_0);
- (void)endInteractiveMovement NS_AVAILABLE_IOS(9_0);
- (void)cancelInteractiveMovement NS_AVAILABLE_IOS(9_0);

最后还要处理拖拽后的数据,就是datasource下面这个方法。

- (void)collectionView:(UICollectionView *)collectionView moveItemAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath*)destinationIndexPath NS_AVAILABLE_IOS(9_0);

这种方式我就不再赘述了,网上能找到比较多博客讲解。我用上面的方法实现了这个功能之后,效果确实还是不错。然并卵,公司现在的应用还是兼容iOS8的。

  • moveItemAtIndexPath:toIndexPath

没错!就是上面这个方法可以帮我们在iOS9之前实现这个效果。其实看过Interactive Reordering这种实现方式后,我们也是可以通过moveitemto这个方法来自己实现的。

不过我不喜欢通过长按来实现拖拽,所以我尝试了一下在cell里面回传touch事件。首先我需要给cell添加一个枚举和协议。

typedef NS_ENUM(NSUInteger, SCCatalogMenuCellTouchType) {
    SCCatalogMenuCellTouchBegan,
    SCCatalogMenuCellTouchMoved,
    SCCatalogMenuCellTouchEnded,
    SCCatalogMenuCellTouchCancelled
};

@protocol SCCatalogMenuCellTouchProtocol <NSObject>
- (void)dealWithCatalogMenuCellTouch:(UITouch *)touch AndType:(SCCatalogMenuCellTouchType)type;
@end

然后在到cell的实现文件中回传touch事件。这里我选择了使用响应链回传。

- (UIResponder<SCCatalogMenuCellTouchProtocol> *)touchResponder {
    UIResponder *next = self.nextResponder;
    while (next != nil) {
        if ([next respondsToSelector:@selector(dealWithCatalogMenuCellTouch:AndType:)]) {
            return (UIResponder<SCCatalogMenuCellTouchProtocol> *)next;
        }
        next = next.nextResponder;
    }
    return nil;
}
#pragma mark - 传递cell的touch事件。
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
    [super touchesBegan:touches withEvent:event];
    [[self touchResponder] dealWithCatalogMenuCellTouch:[touches anyObject] AndType:SCCatalogMenuCellTouchBegan];
}

- (void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
    [super touchesMoved:touches withEvent:event];
    [[self touchResponder] dealWithCatalogMenuCellTouch:[touches anyObject] AndType:SCCatalogMenuCellTouchMoved];
}

- (void)touchesEnded:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
    [super touchesEnded:touches withEvent:event];
    [[self touchResponder] dealWithCatalogMenuCellTouch:[touches anyObject] AndType:SCCatalogMenuCellTouchEnded];
}

- (void)touchesCancelled:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
    [super touchesCancelled:touches withEvent:event];
    [[self touchResponder] dealWithCatalogMenuCellTouch:[touches anyObject] AndType:SCCatalogMenuCellTouchCancelled];
}

最后我们来看一下这个协议的实现。

#pragma mark - 拖拽cell
- (void)dealWithCatalogMenuCellTouch:(UITouch *)touch AndType:(SCCatalogMenuCellTouchType)type {
    if (!self.editing) {
        return;
    }
    __weak typeof(self) weakSelf = self;
    static SCCatalogMenuCell *cell;
    switch (type) {
        case SCCatalogMenuCellTouchBegan:{
            self.collectionView.panGestureRecognizer.enabled = NO;
            CGPoint point = [touch locationInView:self.collectionView];
            //在touch事件开始的时候获取起始的indexpath
            self.sourceIndexPath = [self.collectionView indexPathForItemAtPoint:point];
            if (self.sourceIndexPath.row == 0) {
                return;
            }
            //拿到起始indexpath对应的视图,隐藏子视图
            cell = (SCCatalogMenuCell *)[self.collectionView cellForItemAtIndexPath:self.sourceIndexPath];
            [cell hideSubViews];
            //使用一个另外一个手动创建的cell来占位
            self.fakeCell.frame = cell.frame;
            self.fakeCell.mainTitle.text = cell.mainTitle.text;
            [self.fakeCell magnifyMainTitleSize];
            [self.collectionView addSubview:self.fakeCell];
            //记录所有item的attributes
            [self.cellAttributesArray removeAllObjects];
            for (int i = 0; i < self.currentArray.count; i++) {
                [self.cellAttributesArray addObject:[_collectionView layoutAttributesForItemAtIndexPath:[NSIndexPath indexPathForItem:i inSection:0]]];
            }
        }
            break;
        case SCCatalogMenuCellTouchMoved:{
            if (self.sourceIndexPath.row == 0) {
                return;
            }
            //这里我们这个虚假的cell来代替起始位置的cell做移动
            self.fakeCell.center = [touch locationInView:_collectionView];
            //为了模仿interective recording还需要添加一个timer来处理我们手势位置到达上下边界时需要移动collectionview
            if ((self.fakeCell.center.y >= self.collectionView.contentOffset.y && self.fakeCell.center.y < self.collectionView.contentOffset.y + 25) || (self.fakeCell.center.y > self.collectionView.contentOffset.y + self.collectionView.frame.size.height - 25 && self.fakeCell.center.y <= self.collectionView.contentOffset.y + self.collectionView.frame.size.height)) {
                [self startTimer];
            }
            else {
                [self pauseTimer];
            }
            //这里使需要注意的地方,超出可视范围的地方需要屏蔽掉,会出bug。
            if (self.fakeCell.center.y > self.collectionView.frame.size.height + self.collectionView.contentOffset.y || self.fakeCell.center.y < self.collectionView.contentOffset.y) {
                break;
            }
            //这个是检测移动的方法,在timer的回调中也是要复用的
            [self checkAndMoveIndexPath];
        }
            break;
        case SCCatalogMenuCellTouchEnded:{
            if (self.sourceIndexPath.row == 0) {
                self.sourceIndexPath = nil;
                return;
            }
            [self pauseTimer];
            self.collectionView.panGestureRecognizer.enabled = YES;
            if (!self.destinationIndexPath) {
                //这里处理有目标indexPath的情况
                [UIView animateWithDuration:0.2 animations:^{
                    weakSelf.fakeCell.center = [_collectionView layoutAttributesForItemAtIndexPath:self.sourceIndexPath].center;
                } completion:^(BOOL finished) {
                    [weakSelf.fakeCell restoreMainTitleSize];
                    [weakSelf.fakeCell removeFromSuperview];
                    [cell showSubViews];
                    weakSelf.sourceIndexPath = nil;
                }];
            }
            else {
                //如果有目标indexPath,更新一下移动后的数据
                id obj = self.currentArray[self.sourceIndexPath.row];
                [self.currentArray removeObjectAtIndex:self.sourceIndexPath.row];
                [self.currentArray insertObject:obj atIndex:self.destinationIndexPath.row];
                [UIView animateWithDuration:0.2 animations:^{
                    weakSelf.fakeCell.center = [_collectionView layoutAttributesForItemAtIndexPath:self.destinationIndexPath].center;
                } completion:^(BOOL finished) {
                    [weakSelf.fakeCell restoreMainTitleSize];
                    [weakSelf.fakeCell removeFromSuperview];
                    [cell showSubViews];
                    weakSelf.destinationIndexPath = nil;
                    weakSelf.sourceIndexPath = nil;
                }];
            }
        }
            break;
        case SCCatalogMenuCellTouchCancelled:{
            //这里处理手势取消的情况
            if (self.sourceIndexPath.row == 0) {
                self.sourceIndexPath = nil;
                return;
            }
            [self pauseTimer];
            self.collectionView.panGestureRecognizer.enabled = YES;
            [UIView animateWithDuration:0.2 animations:^{
                weakSelf.fakeCell.center = [_collectionView layoutAttributesForItemAtIndexPath:self.sourceIndexPath].center;
            } completion:^(BOOL finished) {
                [weakSelf.fakeCell restoreMainTitleSize];
                [weakSelf.fakeCell removeFromSuperview];
                [cell showSubViews];
                weakSelf.sourceIndexPath = nil;
            }];
        }
            break;
        default:
            break;
    }
}
#pragma mark - cell移动位置
- (void)checkAndMoveIndexPath {
    for (UICollectionViewLayoutAttributes *attributes in self.cellAttributesArray) {
        if (attributes.indexPath.row != 0 && CGRectContainsPoint(attributes.frame, self.fakeCell.center)) {
            if (!self.destinationIndexPath && attributes.indexPath != self.sourceIndexPath) {
                [self.collectionView moveItemAtIndexPath:self.sourceIndexPath toIndexPath:attributes.indexPath];
                self.destinationIndexPath = attributes.indexPath;
            }
            else if (self.destinationIndexPath && attributes.indexPath != self.destinationIndexPath) {
                [self.collectionView moveItemAtIndexPath:self.destinationIndexPath toIndexPath:attributes.indexPath];
                self.destinationIndexPath = attributes.indexPath;
            }
        }
    }
}
#pragma mark - timer处理
- (void)responseToTimer {
    if (self.fakeCell.center.y < self.collectionView.contentOffset.y + 25) {
        if (self.collectionView.contentOffset.y < 5) {
            self.fakeCell.center = CGPointMake(self.fakeCell.center.x, self.fakeCell.center.y - self.collectionView.contentOffset.y);
            self.collectionView.contentOffset = CGPointZero;
        }
        else {
            self.fakeCell.center = CGPointMake(self.fakeCell.center.x, self.fakeCell.center.y - 5);
            self.collectionView.contentOffset = CGPointMake(0, self.collectionView.contentOffset.y - 5);
        }
        [self checkAndMoveIndexPath];
    }
    else if (self.fakeCell.center.y > self.collectionView.contentOffset.y + self.collectionView.frame.size.height - 25) {
        if (self.collectionView.contentOffset.y + self.collectionView.frame.size.height > self.collectionView.contentSize.height - 5) {
            self.fakeCell.center = CGPointMake(self.fakeCell.center.x, self.fakeCell.center.y + (self.collectionView.contentSize.height - self.collectionView.contentOffset.y - self.collectionView.frame.size.height));
            self.collectionView.contentOffset = CGPointMake(0, self.collectionView.contentSize.height - self.collectionView.frame.size.height);
        }
        else {
            self.fakeCell.center = CGPointMake(self.fakeCell.center.x, self.fakeCell.center.y + 5);
            self.collectionView.contentOffset = CGPointMake(0, self.collectionView.contentOffset.y + 5);
        }
        [self checkAndMoveIndexPath];
    }
}

这就是我实现的思路,大家可以参考一下。代码传送门在这里

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,864评论 6 494
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,175评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,401评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,170评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,276评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,364评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,401评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,179评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,604评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,902评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,070评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,751评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,380评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,077评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,312评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,924评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,957评论 2 351

推荐阅读更多精彩内容