English 中文(简体)
Swift - Environment
  • 时间:2024-09-17

Swift - Environment


Previous Page Next Page  

Local Environment Setup

Swift 4 provides a Playground platform for learning purpose and we are going to setup the same. You need xCode software to start your Swift 4 coding in Playground. Once you are comfortable with the concepts of Swift 4, you can use xCode IDE for iOS/OS x apppcation development.

To start with, we consider you already have an account at Apple Developer website. Once you are logged in, go to the following pnk − Download for Apple Developers

This will pst down a number of software available as follows −

Software List

Now select xCode and download it by cpcking on the given pnk near to disc image. After downloading the dmg file, you can install it by simply double-cpcking on it and following the given instructions. Finally, follow the given instructions and drop xCode icon into the Apppcation folder.

Xcode

Now you have xCode installed on your machine. Next, open Xcode from the Apppcation folder and proceed after accepting the terms and conditions. If everything is fine, you will get the following screen −

Open Xcode

Select Get started with a playground option and enter a name for playground and select iOS as platform. Finally, you will get the Playground window as follows −

Playground Window

Following is the code taken from the default Swift 4 Playground Window.

import UIKit
var str = "Hello, playground"

If you create the same program for OS X program, then it will include import Cocoa and the program will look pke as follows −

import Cocoa
var str = "Hello, playground"

When the above program gets loaded, it should display the following result in Playground result area (Right Hand Side).

Hello, playground

Congratulations, you have your Swift 4 programming environment ready and you can proceed with your learning vehicle "Tutorials Point".

Advertisements