Book Image

Swift Cookbook. - Second Edition

By : Keith Moon, Chris Barker
Book Image

Swift Cookbook. - Second Edition

By: Keith Moon, Chris Barker

Overview of this book

Swift is an exciting, multi-platform, general-purpose programming language, and with this book, you'll explore the features of its latest version, Swift 5.3. The book begins with an introduction to the basic building blocks of Swift 5.3, its syntax, and the functionalities of Swift constructs. You’ll then discover how Swift Playgrounds provide an ideal platform to write, execute, and debug your Swift code. As you advance through the chapters, the book will show you how to bundle variables into tuples or sets, order your data with an array, store key-value pairs with dictionaries, and use property observers. You’ll also get to grips with the decision-making and control structures in Swift, examine advanced features such as generics and operators, and explore functionalities outside of the standard library. Once you’ve learned how to build iOS applications using UIKit, you'll find out how to use Swift for server-side programming, run Swift on Linux, and investigate Vapor. Finally, you'll discover some of the newest features of Swift 5.3 using SwiftUI and Combine to build adaptive and reactive applications, and find out how to use Swift to build and integrate machine learning models along with Apple’s Vision Framework. By the end of this Swift book, you'll have discovered solutions to boost your productivity while developing code using Swift 5.3.
Table of Contents (14 chapters)
12
About Packt

Looping with for loops

for loops allow you to execute code for each element in a collection or range. In this recipe, we will explore how to use for loops to perform actions on every element in a collection.

How to do it...

Let's create some collections and then use for loops to act on each element in the collection:

  1. Create an array of elements, so we can do something with every item in the array:
let theBeatles = ["John", "Paul", "George", "Ringo"]
  1. Create a loop to go through our theBeatles array and print each string element that the for loop provides:
for musician in theBeatles { 
print(musician)
}
  1. Create a for loop that executes some code a set number of times, instead of looping through an array. We can do this by providing a range instead of a collection:
// 5 times table 
for value in 1...12 {
print("5 x \(value) = \(value*5)")
}
  1. Create a for loop to print the keys and values of a dictionary. Dictionaries contain...