我有一个问题,UISwipeGestureRecognizer
找不到解决方案。
我只想UISwipeGestureRecognizer
在视图的一半上使用。但我也想在我的视图上使用按钮。
这就是我所做的。
我有一个768 x 1024 像素的UIView
名称firstView
,上面有按钮。
现在我想在名为768 x 512 像素的名称上添加一个UIView
或。UIImageView
firstView
secondView
滑动会起作用,但我下面的按钮secondView
(按钮打开firstView
)不起作用。
我错过了什么功能让两个视图都响应?
还是有比我上面描述的更好的方法?
我的刷卡码:
UIImageView *secondView = [[[UIImageView alloc] initWithFrame:
CGRectMake(0,0,768,512)] autorelease];
//UIView *secondView = [[[UIView alloc] initWithFrame:CGRectMake(0,0,768,512)] autorelease];
secondView.userInteractionEnabled = YES;
[firstView addSubview:secondView];
oneFingerSwipeLeft = [[[UISwipeGestureRecognizer alloc] initWithTarget:self
action:@selector(swipeRecognition:)] autorelease];
[oneFingerSwipeLeft setDirection:UISwipeGestureRecognizerDirectionLeft];
[secondView addGestureRecognizer:oneFingerSwipeLeft];