UINAVIGATIONCONTROLLER 不显示后退按钮,不滑动返回:UIKIT
嘿伙计们,我正在尝试使用 NavigationController 作为后退按钮并从左滑动到后退操作。
你能告诉我我做错了什么吗?
你能告诉我还能做什么吗?
PS Show 而不是present 效果也不好。
let vc = UINavigationController(rootViewController: BarcodeViewController())
vc.modalPresentationStyle = .fullScreen
present(vc, animated: false)
Hey Guys I am trying to use NavigationController for back button and swipe left to back action.
can you tell me what I am doing wrong ?
Could u tell me what else to do ?
P.S. Show instead of present doesn't work as well.
let vc = UINavigationController(rootViewController: BarcodeViewController())
vc.modalPresentationStyle = .fullScreen
present(vc, animated: false)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我确实通过在 SceneDelegate 中嵌入主 ViewController 然后通过 UINavigationController.pushViewController 推送新的 viewController 解决了这个问题。
I did solve this problem by embedding main ViewController in SceneDelegate and then push a new viewController via UINavigationController.pushViewController ..