3 min read

 In this article, by Keith Moon author of the book Swift 4 Programming Cookbook, we will learn how to write your first swift program.

(For more resources related to this topic, see here.)

Your first Swift program

In this first recipe will be get up and running with Swift using a Swift Playground, and run our first piece of Swift code.

Getting ready

To run our first Swift program, we first need to download and install our IDE. During the beta of Apple’s Xcode 9, it is available as a direct download from Apple’s developer website at http://developer.apple.com/download, access to this beta will require a free Apple developer account. Once the beta has ended and Xcode 9 is publically available, it will also be available from the Mac App Store. By obtaining it from the Mac App Store, you will automatically be informed of updates, so this is the preferred route, once Xcode 9 is out of beta.

Xcode from the Mac App Store

  1. Open up the Mac App Store, either from the dock or via Spotlight:
    Swift 4 Programming Cookbook
  2. Search for xcode:
    Swift 4 Programming Cookbook
  3. Click Install:
    Swift 4 Programming Cookbook
    Xcode is a large download (over 4 GB). So, depending on your internet connection, this could take a while!
  4. Progress can be monitored from Launchpad:
    Swift 4 Programming Cookbook

Xcode as a direct download

  1. Go to the Apple Developer download page at http://developer.apple.com/download 

    Swift 4 Programming Cookbook

  2. Click the Download button to download Xcode within a .xip file. 
    Swift 4 Programming Cookbook
  3. Double click on the downloaded file to unpack the Xcode application.
  4. Drag the Xcode application into your Applications folder
    Swift 4 Programming Cookbook

How to do it…

With Xcode downloaded, let create our first Swift playground:

  1. Launch Xcode from the icon in your dock.
  2. From the welcome screen, choose Get started with a playground.

    Swift 4 Programming Cookbook

  3. From the template chooser, select the blank template from the iOS tab:

    Swift 4 Programming Cookbook

  4. Choose a name for your playground and a location to save it:

    Swift 4 Programming Cookbook

    Xcode Playgrounds can be based on one of three different Apple platforms, iOS, tvOS and macOS (the operating system formerly known as OSX). Playgrounds provide full access to the frameworks available to either iOS, tvOS or macOS, depending on which you choose. An iOS playground will be assumed for the entirety of this chapter, chiefly because this is the platform of choice of the author. Where recipes do have UI components, the iOS platform will be used until otherwise stated.
  5. You are now presented with a view that looks like this:

    Swift 4 Programming Cookbook

  6. Let’s replace the word playground with Swift!.
  7. Press the blue play button in the bottom left-hand corner of the window to execute the code in the playground:
    Swift 4 Programming Cookbook
  8. Congratulations! You have just run some Swift code.
  9. On the right-hand side of the window, you will see the output of each line of code in the playground. We can see our line of code has output "Hello, Swift!":
    Swift 4 Programming Cookbook

There’s more…

If you put your cursor over the output on the left-hand side, you will see two buttons, one that looks like an eye, another that is a circle:

Swift 4 Programming Cookbook

Click on the eye button and you get a Quick Look box of the output. This isn’t that useful for just a string, but can be useful for more visual output like colors and views.

Swift 4 Programming Cookbook

Click on the square button, and a box will be added in-line, under your code, showing the output of the code. This can be really useful if you want to see how the output changes as you change the code.

Swift 4 Programming Cookbook

Summary

In this article, we learnt how to run your first swift program.

Resources for Article:


Further resources on this subject:


LEAVE A REPLY

Please enter your comment!
Please enter your name here