我想在 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;
}
在上面的代码中,self指向了pageviewcontroller。
因此我无法将委托分配给pageviewcontroller手势。
已编辑的部分:
好的,我得到了它,因为uipageviewscroll样式,我没有得到任何手势对象。
但我有一个问题我需要禁用pageviewcontroller 平移手势并需要从两个按钮滚动pageviewcontroller,就像用户尝试平移一样,它的起始点在我的uibuttons框架内,然后是pageviewcontroller否则应滚动。
我正在使用transitionStyle UIPageViewControllerTransitionStyleScroll 。
任何解决方案...... 提前致谢
答案 0 :(得分:7)
在尝试了这么多黑客之后,我终于得到了解决方案。
我做了什么,首先在属性中获得了pageviewcontroller scorll视图
for (UIView *view in mypageviewcontroller.view.subviews) {
if([view isKindOfClass:[UIScrollView class]])
{
pagescrollview= (UIScrollView *)view;
}
}
然后将pan手势分配给pageviewcontroller scorllview和手势委托。
UIPanGestureRecognizer* g1 = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(gesture)];
[g1 setDelegate:self];
[pagescrollview addGestureRecognizer:g1];
然后在手势委托中,我检查手势是否从我的愿望点开始,如果从应该滚动pageviewcontroller的位置开始,那么这个委托方法应该返回no以启用原始pagescorllview手势来接收平移手势。
-(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;
}
希望它可以帮助别人。