从 UIViewController 导航到 SwiftUI 视图
Navigate from UIViewController to SwiftUI View
我在网上看到很多关于如何导航到 UIViewController 从 SwiftUI 视图,但关于如何导航从一个UIViewController 到一个SwiftUI视图。有人知道怎么做吗?
您可以像使用 UIViewcontroller
那样执行此操作,但 SwiftUIView 在 UIKit
中使用 UIHostingController
表示
import SwiftUI
...
let hostingController = UIHostingController(rootView: YourSwiftUIView())
navigationController?.pushViewController(hostingController, animated: true)
我在网上看到很多关于如何导航到 UIViewController 从 SwiftUI 视图,但关于如何导航从一个UIViewController 到一个SwiftUI视图。有人知道怎么做吗?
您可以像使用 UIViewcontroller
那样执行此操作,但 SwiftUIView 在 UIKit
UIHostingController
表示
import SwiftUI
...
let hostingController = UIHostingController(rootView: YourSwiftUIView())
navigationController?.pushViewController(hostingController, animated: true)