我想在 pageviewcontroller.m 文件中实现-(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch
手势代表,但我无法获得任何手势,例如:
NSArray *temp = self.gestureRecognizers;
NSLog(@"count %i",temp.count); // this logs count 0
NSArray *temp = self.view.gestureRecognizers;
NSLog(@"count %i",temp.count); // this also logs count 0
for (UIGestureRecognizer *gR in temp) {
gR.delegate = self;
}
在上面的代码中,自我指向的是pageviewcontroller。
因此,我无法将委托(delegate)分配给pageviewcontroller手势。
编辑部分:
好的,我明白了,由于uipageviewscroll样式,我没有得到任何手势对象。
但是我有一个问题,我需要禁用pageviewcontroller 平移手势,并需要从两个按钮滚动pageviewcontroller,就像用户尝试平移一样,它的起点是在我的uibuttons框架内,那么pageviewcontroller应该滚动否则不可以。
我正在使用transitionStyle UIPageViewControllerTransitionStyleScroll 。
任何解决方案...
提前致谢
最佳答案
在尝试了许多技巧之后,我终于找到了解决方案。
我做了什么,首先在属性中获得了pageviewcontroller scorll View
for (UIView *view in mypageviewcontroller.view.subviews) {
if([view isKindOfClass:[UIScrollView class]])
{
pagescrollview= (UIScrollView *)view;
}
}
然后将平移手势分配给pageviewcontroller scorllview和手势委托(delegate)。
UIPanGestureRecognizer* g1 = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(gesture)];
[g1 setDelegate:self];
[pagescrollview addGestureRecognizer:g1];
然后在手势委托(delegate)中,我检查了手势是否从我的期望点开始,如果从应该滚动pageviewcontroller的位置开始,则此委托(delegate)方法应该返回no以使原始pagecorllview手势能够接收平移手势。
-(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch
{
if ([gestureRecognizer isKindOfClass:[UIPanGestureRecognizer class]]) {
CGPoint touchPoint = [touch locationInView:self.view];
if(floor(NSFoundationVersionNumber)<=NSFoundationVersionNumber_iOS_6_1)
touchPoint.y -=44;
else
touchPoint.y -=64;
PGNavigationController *nav =ViewControllerArray[VisiblePageindex];
PageContentVC *pagecontentvc = ((PageContentVC *) nav.visibleViewController);
if (touchPoint.y > pagecontentvc.leftpanalbtn.frame.origin.y && (pagecontentvc.leftpanalbtn.frame.size.height+pagecontentvc.leftpanalbtn.frame.origin.y )>touchPoint.y && touchPoint.x >pagecontentvc.leftpanalbtn.frame.origin.x
&& touchPoint.x<(pagecontentvc.leftpanalbtn.frame.origin.x+pagecontentvc.leftpanalbtn.frame.size.width)) {
return NO;
}
else if (touchPoint.y > pagecontentvc.rightpanalbtn.frame.origin.y && (pagecontentvc.rightpanalbtn.frame.size.height+pagecontentvc.rightpanalbtn.frame.origin.y )>touchPoint.y && touchPoint.x >pagecontentvc.rightpanalbtn.frame.origin.x
&& touchPoint.x<(pagecontentvc.rightpanalbtn.frame.origin.x+pagecontentvc.rightpanalbtn.frame.size.width))
{
return NO;
}
if( touchPoint.y>282 && touchPoint.x>118 &&touchPoint.y<282+75 && touchPoint.x < 118+85)
{
return NO;
}
// else if()
}
return YES;
}
希望它能帮助别人。
关于ios - 自定义UIPageViewController手势识别器滚动行为,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21927970/