DEV Community

Discussion on: Working with your UIViewController and SwiftUI

Collapse
 
kevinmaarek profile image
Maarek

Can you provide some of your SwiftUI code ?

Collapse
 
jpelayo profile image
jpelayo • Edited

Thanks... but... solved!

Thing is that you can also do:


 func makeUIViewController(context: UIViewControllerRepresentableContext<MyView>) -> ViewController {


        return UIStoryboard(name: "MyViewControllerStoryboard", bundle: nil).instantiateViewController(identifier: String(describing: ViewController.self)) as! ViewController

    }

Cheers!