Skip to main content

Creating a new SwiftUI project is a quick process.  There are already thousands of sites outlining how to do these steps.  Rather than repeat this steps at the top of each article, we will refer to this article to get you across the line if you don't know or need a refresher.

Step 1

Open Xcode and either click Create a new Xcode project in Xcode’s startup window, or choose File > New > Project.

Step 2

In the template selector, select iOS as the platform, select the Single View App template, and then click Next.

Step 3

Enter the name of your project in the Product Name field, select SwiftUI for the user interface, and click Next. You will be prompted to select a location to save the your project on your Mac.  We have a directory named Apps that has the following path:

Users > {your name} > Apps

Related articles

Andrew Fletcher12 Aug 2022
Using SwiftUI URLComponent to change a URL's scheme
The challenge I was facing, I had written a script to scan barcodes and use Google book API to view the contents.  However, a snippet of the JSON response { "contentVersion": "0.2.0.0.preview.0", "panelizationSummary": { "containsEpubBubbles": false, ...