URLNavigator
URLNavigator copied to clipboard
Facing memory leaks while using URLOpenHandler
I think we are using a singleton inside a closure which results in a memory leak. In addition to that there are other leaks as well.
Navigator.map("http://first") { [unowned self] _ in
let vc = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "first") as! FirstViewController
Navigator.push(vc)
return true
}

@therudite, Thanks for reporting! Do you have any idea to fix this?