Open Chaos1019 opened 4 years ago
有道理
- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer {
if (self.nav.viewControllers.count > 1) {
return self.nav.topViewController.hbd_swipeBackEnabled && self.nav.topViewController.hbd_backInteractive;
}
return NO;
}
这里这么写是不是好一些?
@Chaos1019 好,你要不要提个 PR
@Chaos1019 好,你要不要提个 PR
已经提了
这么做合理吗?是不是当hbd_swipeBackEnabled设置为NO时,用户侧滑返回是不是应该单纯的没有操作,而且不应该执行hbd_backInteractive的getter方法?