Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Arrow up icon
GO TO TOP
Swift 4 Programming Cookbook

You're reading from   Swift 4 Programming Cookbook 50 task-oriented recipes to maximise Swift 4 productivity

Arrow left icon
Product type Paperback
Published in Sep 2017
Publisher Packt
ISBN-13 9781786460899
Length 384 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Toc

Table of Contents (15) Chapters Close

Title Page
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface
1. Swift Building Blocks FREE CHAPTER 2. Building on the Building Blocks 3. Data Wrangling with Swift Control Flow 4. Generics, Operators, and Nested Types 5. Beyond the Standard Library 6. Swift Playgrounds 7. Server-Side Swift 8. Performance and Responsiveness in Swift

For the love of loops


For loops allow you to execute code for each element in a collection or range.

How to do it...

Take a look at the following steps and code:

  1. Let's imagine that we have an array of elements, and we want to do something with every item in the array:
let theBeatles = ["John", "Paul", "George", "Ringo"] 
  1. We can use a for loop, which will extract each element of the array in turn, and will execute the given block of code for each element. The syntax of a for loop is as follows:
for <#each element#> in <#collection or range#> { 
    <#code to execute#> 
} 
  1. So, to print all the musicians in the Beatles, let's loop through our theBeatles array and print each String element that the for loop provides:
for musician in theBeatles { 
    print(musician) 
} 
  1. Perhaps you don't need to loop through an array, and just want to execute some code a set number of times. We can do this by providing a range instead of a collection:
// 5 times table 
for value in 1...12 { 
    print...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime
Visually different images