gpt4 book ai didi

iphone - 在 UIScrollView 中使用滑动手势而不禁用水平和垂直滚动

转载 作者:行者123 更新时间:2023-12-03 20:28:00 24 4
gpt4 key购买 nike

我查看了其他解决方案,但找不到适合自己的解决方案。我在 UIScrollView 中有一个 UIImageView,我在其中显示大图片。

我在 UIScrollView 中启用了捏合手势以及左右滑动手势识别器。

现在, ScrollView 的平移手势似乎禁用(或损坏)滑动手势。我不想在 UIScrollView 上禁用水平或垂直滚动​​,并且照片的初始缩放太大,无法禁用水平滚动。

我想要做的是当我到达 UIScrollView 的边缘时触发滑动手势。

这是一些代码;

- (void)viewDidLoad
{
// recognizer for pinch gestures
UIPinchGestureRecognizer *pinchRecognizer =[[UIPinchGestureRecognizer alloc]initWithTarget:self action:@selector(handlePinch:)];
[self.myScrollView addGestureRecognizer:pinchRecognizer];
[self.myScrollView setClipsToBounds:NO];

// recognizer for swipe gestures
UISwipeGestureRecognizer *recognizer;

// left and right swipe recognizers for left and right animation
recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleLeftSwipe:)];
[recognizer setDirection:(UISwipeGestureRecognizerDirectionRight)];
[[self myScrollView] addGestureRecognizer:recognizer];

recognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleRightSwipe:)];
[recognizer setDirection:(UISwipeGestureRecognizerDirectionLeft)];
[[self myScrollView] addGestureRecognizer:recognizer];
....

我的左滑动处理程序,目前左右滑动没有任何附加功能

-(void)handleLeftSwipe:(UISwipeGestureRecognizer *)recognizer
{
if(!self.tableView.hidden) self.tableView.hidden = YES;
[self showRequiredStuff];
CATransition *transition = [CATransition animation];
transition.duration = 0.75;
transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
transition.type = kCATransitionPush;
transition.subtype =kCATransitionFromLeft;
transition.delegate = self;
[self.view.layer addAnimation:transition forKey:nil];

我的初始屏幕尺寸;

#define IMAGE_VIEW_WIDTH 320.0
#define IMAGE_VIEW_HEIGHT 384.0

我对图片使用缩放,使它们缩放得尽可能小,但大多数都是宽图像,这种情况下启用水平滚动,禁用垂直滚动。尽管我的滑动处理程序也是水平的。

我想我已经清楚地解释了发生了什么以及我需要什么。我发布代码是因为我是iphone应用程序开发的新手,我既想帮助其他人看到尽可能多的代码,也许有人会指出任何糟糕的编程,我们都会从中受益。

相关解决方案的其他发现;设置后;

@interface myViewController () <UIScrollViewDelegate>

self.myScrollView.delegate = self;

检测是否水平到达边缘

- (BOOL) hasReachedAHorizontalEdge {
CGPoint offset = self.myScrollView.contentOffset;
CGSize contentSize = self.myScrollView.contentSize;
CGFloat height = self.myScrollView.frame.size.height;
CGFloat width = self.myScrollView.frame.size.width;

if ( offset.x == 0 ||
(offset.x + width) == contentSize.width ) {
return YES;
}

return NO;

}

- (void) scrollViewDidScroll:(UIScrollView *)scrollView {
if ( [self hasReachedAHorizontalEdge] ) {
NSLog(@"Reached horizontal edge.");
// required here
}
}

此时,我需要禁用到达末端的滚动等。如果我到达滚动的右边缘,我只需要禁用右侧滚动,这样就会触发滑动。

最佳答案

我在 ScrollView 的边缘添加了一个薄的 UIView 并让它们识别滑动。我无法让 ScrollView 与另一个滑动手势识别器配合。这并不理想,但目前有效。我将不得不调查是否有办法覆盖 ScrollView 的滑动手势识别器。

诀窍是检查并查看滑动是否从边缘附近开始,然后决定是否调用 ScrollView 或我的滑动识别器。

关于iphone - 在 UIScrollView 中使用滑动手势而不禁用水平和垂直滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10652241/

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