CrabMen / CMPageTitleView

✍️一分钟集成类似抖音,新浪微博,腾讯视频,网易新闻,今日头条等常见的标题栏样式,api灵活易扩展,支持Cocoapods和Masonry布局,支持ChildController的完整生命周期

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

你好,好像不支持手势返回 ,用的FDFullscreenPopGesture

ieliwb opened this issue · comments

RT,谢谢,有解决方案吗?大佬!

CMPageContentView.m

@implementation CMPageContentView

  • (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {
    if (self.contentOffset.x <= 0) {
    if ([otherGestureRecognizer.delegate isKindOfClass:NSClassFromString(@"_FDFullscreenPopGestureRecognizerDelegate")]) {
    return YES;
    }
    }
    return NO;
    }