-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在使用这个路由的情况下,有部分概率出现界面未 push 成功,Lookin 能看到显示顶层的空白界面 #1
Comments
目标控制器显示展示方式代码能看下吗? |
func showDetail(withMatchRouterResult _: JJKit.JJRouter.MatchResult, from sourceController: UIViewController) { |
我也出现过, 找到了下面这个博客 我在项目中添加如下逻辑,再也没出现过了 open class CustomeGesNavigationController: UINavigationController, UIGestureRecognizerDelegate{
open override func viewDidLoad() {
super.viewDidLoad()
self.interactivePopGestureRecognizer?.delegate = self
}
/// 设置侧滑手势
public func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool
{
if self.viewControllers.count <= 1 { return false }
return true
}
} |
试下下上面的代码 |
No description provided.
The text was updated successfully, but these errors were encountered: