gpt4 book ai didi

ios - 使用外部起点触发 UIPanGestureRecognizer

转载 作者:可可西里 更新时间:2023-11-01 05:43:44 24 4
gpt4 key购买 nike

我的布局如下图所示:

question image

黑色区域是一个摄像头,红色区域只是一个带有 UIPanGestureRecognizer 的 UIView,绿色区域是一个带有图像的 UICollectionView。

现在,如果用户按下红色区域并开始拖动,所有布局都会移动到顶部,并且当相机溢出设备屏幕时,用户可以立即在 Collection View 中看到更多项目。所有逻辑都已经完成。

我的问题是,即使用户开始拖动到红色区域之外,我也想要相同的功能,即用户开始从设备底部拖动 Collection View ,以便显示更多项目,但如果用户到达 (越过,移过)红色区域,然后 PanGestureRecognizer 应该被触发。从磁盘中选择图像时,Instagram 具有此功能。有没有办法实现我所缺少的?我尝试用 pointInside、touchesBegan 和 touchesMoved 覆盖红色 View ,但如果拖动来自 Collection View ,则其中任何一个都会被调用。 SwipeGesture 也不起作用。谢谢!

最佳答案

您可以尝试以下方法:

1) 将要激活的 PanGesture(红色的)也添加到 Collection View 中:

[self.collectionView addGestureRecognizer:redPanGesture];

2)在PanGesture被激活时调用的方法中,过滤它以便仅当手指在红色区域上方时才执行逻辑:

CGPoint location = [recognizer locationInView:self.redView];

if(location.y > self.redView.frame.size.height)
{
[(UIPanGestureRecognizer *)recognizer setTranslation:CGPointZero inView:self.view];
return;
}

3) 将您的类(class)设置为 PanGesture 的代表:

redPanGesture.delegate = self;

4)实现下面的方法,否则collection view不会滚动:

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer
shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer
{
return YES;
}

关于ios - 使用外部起点触发 UIPanGestureRecognizer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31591576/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com