Loop Through Elements in Array

// Create an Array with three elements
var myArray = ["Swift", "Objective-C", "PHP"]

// Loop through Array elements
for arrayElement in myArray {
    print(arrayElement)
}

[raw_html_snippet id=”cookbookpagecoursesheader”]

Unit Testing Swift Mobile App

Apply Test-Driven Development(TDD) process to iOS mobile app development in Swift Preview this video course.