Unabled to create single view ios app in xcode

Viewed 3284

I am new to ios/xcode and I was trying to follow through the new SwiftUI tutorial. The first one has you create a ios single view app enter image description here. However when I go to xcode under the ios filter that, among others is not an option for me: enter image description here I have verified that my xcode is up to date via app store. Is this due to me not having a paid developer account? Are those templates in a beta channel of xcode?

3 Answers

Answering, as per the OP...

The tutorial in question was done using Xcode 11

In Xcode 12, there is no longer a Single View App option — it has been replaced with simply “App”

Select app and then in the next screen select "Storyboard" in the "Interface" drop down menu. That will create what you need (mainly the Main.storyboard file) for the single view app. (see the linked screenshot here below) enter image description here

enter image description here

Related