View Controller File missing in Xcode 14

Hi, I am learning Xcode 14 for the first time but I have worked with Xcode 13. I am having trouble finding the ViewController file in Xcode 14. Could you please help me? Thank you.

The most likely cause of your problem is that you did not explicitly specify the interface when creating the project. Xcode defaults to using SwiftUI for new projects. SwiftUI does not have view controllers.

You must explicitly choose Storyboard from the Interface menu when creating the project to get a view controller file. The following article has more detailed information:

https://www.swiftdevjournal.com/xcode-11-missing-view-controllers/

View Controller File missing in Xcode 14
 
 
Q