在我的应用程序中,我想执行基于 UITapGestureRecognizer 的 segue。如果点击位于屏幕的顶部区域,则应执行对 SettingsView 的 segue。
在 UIKit 中,这非常简单。我通过将它包装在一个 if 语句中触发了 UITapGestureRecognizer 中的 performSegue。
现在我想在 SwiftUI 中编写 SettingsView()。SettingsView() 将嵌入在 UIHostingController 中。
我的问题是:我怎样才能对这个 UIHostingController 执行 segue(同时告诉 UIHostingController 要显示哪个视图)?
我尝试使用新的@IBSegueAction。使用这个@IBSegueAction 的原因是我可以用它来告诉 UIHostingController 要显示哪个视图。问题是我现在不能插入条件。无论点击屏幕上的哪个位置,都会执行 segue。我还没有找到在@IBSegueAction 中取消segue 的方法。
我的代码目前如下所示:
@IBSegueAction func showSettingsHostingControler(_ coder: NSCoder, sender: UITapGestureRecognizer, segueIdentifier: String?) -> UIViewController? {
let location = sender.location(in: self.tableView)
if let _ = self.tableView.indexPathForRow(at: location) {
return nil
} else {
if location.y < 32 {
if location.x < view.bounds.midX {
direction = .left
} else {
direction = .right
}
return UIHostingController(coder: coder, rootView: SettingsView())
}
}
return nil
}
目前的结果是,当点击错误的区域时,应用程序会转到不存在的 Nil 视图。