Results 2 comments of Phanith NY

Just got the same crash, my issue is with memory leaks. Resolved the leak, and issue is gone. Hope that helps.

If you embedded viewController inside UINavigationController, try below code: ``` swift let modalVC = SheetViewController() let navigationController = UINavigationController() // This isn't work // let navigationController = UINavigationController(rootViewController: modalVC) navigationController.setViewControllers([modalVC],...