我的APP里面所有的 上一页按钮都是用
self.navigationController?.popViewController(animated: true)
但是我从URL Scheme 开启App之后
所有的 上一页按钮 全部都无法作用
AppDelegate里 URL Scheme设定跳转页面是用
let storyboard : UIStoryboard = UIStoryboard(name: "main", bundle: nil)
let VC = storyboard.instantiateViewController(withIdentifier: "PassWordViewController")
window?.rootViewController?.present(VC, animated: true, completion: nil)
请问下要AppDelegate怎么改 才可以让整个app的上一页按钮 正常?