重写 View 的 Touch 方法,实现一个酷炫的九宫格图片

前几天翻看代码库,发现一个之前写过的一个有意思的小玩意,共享给大家
废话不多说,上图,先看看效果
重写 View 的 Touch 方法,实现一个酷炫的九宫格图片_第1张图片
photosView.gif

怎么样,是不是还蛮有意思呢?

实现起来非常简单,我们只需要重写几个 View 的 touch 方法

//触摸开始
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
    
    //获取触摸点
    UITouch *touch = [touches anyObject];
    CGPoint point = [touch locationInView:self];
    
    //当前点击到的图片的下标小于图片数组的元素个数
    _selectIndex = [self itemIndexWithPoint:point];
    if (_selectIndex < self.itemArray.count) {
        UIImageView *item = self.itemArray[_selectIndex];
        //拿到最上层
        [self bringSubviewToFront:item];
        //动画效果
        [UIView animateWithDuration:0.3 animations:^{
            //改变当前选中图片视图的大小和位置
            item.center = point;
            item.transform = CGAffineTransformMakeScale(1.2, 1.2);
            item.alpha = 0.8;
        }];
    }
    
}

在触摸一开始,我们先判定当前触摸的点是在哪一张图片上,获得这张图片的下标,并设置为选中下标,然后改变当前图片的位置(中心移动到触摸点)和大小(放大效果)。

//触摸移动
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
    
    //获取触摸点
    UITouch *touch = [touches anyObject];
    CGPoint point = [touch locationInView:self];
    
    //获取当前触摸点位置下标
    NSInteger index = [self itemIndexWithPoint:point];
    
    if (_selectIndex < self.itemArray.count) {
        UIImageView *item = self.itemArray[_selectIndex];
        item.center = point;
        if (index < self.itemArray.count && index != _selectIndex) {
            //当前点位置所属下标与选中下标不同
            //将两个图片分别在数据源数组和子视图数组中移除
            UIImage *image = _dataList[_selectIndex];
            [_dataList removeObjectAtIndex:_selectIndex];
            [self.itemArray removeObjectAtIndex:_selectIndex];
            //重新插入到指定位置
            [_dataList insertObject:image atIndex:index];
            [self.itemArray insertObject:item atIndex:index];
            //重新记录选中下标
            _selectIndex = index;
            //重新布局
            [self restartMakeItemFram];
        }
    }
    
}

然后在触摸移动方法中再次判定当前触摸点所在的图片下标,然后比较选中下标与当前下标,如果不相同,就交换两张图片的位置。

//触摸结束
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{
    
    if (_selectIndex < _itemArray.count) {
        UIImageView *item = _itemArray[_selectIndex];
        
        //还原操作
        [UIView animateWithDuration:0.3 animations:^{
            item.transform = CGAffineTransformIdentity;
            item.alpha = 1;
            item.frame = [self makeFrameWithIndex:(int)_selectIndex];
        }];
    }
    
}

最后,在触摸结束方法中还原选中图片的大小,重新计算它的位置

是不是很简单呢?下面附上 Demo 的地址
Demo点这里点这里

你可能感兴趣的:(重写 View 的 Touch 方法,实现一个酷炫的九宫格图片)