Book Image

iOS 12 Programming for Beginners - Third Edition

By : Craig Clayton
Book Image

iOS 12 Programming for Beginners - Third Edition

By: Craig Clayton

Overview of this book

Want to build iOS 12 applications from scratch with the latest Swift 4.2 language and Xcode 10 by your side? Forget sifting through tutorials and blog posts; this book is a direct route to iOS development, taking you through the basics and showing you how to put principles into practice. Take advantage of this developer-friendly guide and start building applications that may just take the App Store by storm! If you’re already an experienced programmer, you can jump right in and learn the latest iOS 12 features. For beginners, this book starts by introducing you to iOS development as you learn Xcode and Swift. You'll also study advanced iOS design topics, such as gestures and animations, to give your app the edge. You’ll explore the latest Swift 4.2 and iOS 12 developments by incorporating new features, such as the latest in notifications, custom-UI notifications, maps, and the recent additions in Sirikit. The book will guide you in using TestFlight to quickly get to grips with everything you need to get your project on the App Store. By the end of this book, you'll be ready to start building your own cool iOS applications confidently.
Table of Contents (27 chapters)
Free Chapter
1
Getting Familiar with Xcode

Organizing your code

Earlier, we wrote an extension for our DataManager; extensions are useful for adding functionality onto standard libraries, structs, or classes—such as arrays, ints, and strings—or onto your data types.

Here is an example. Let's say that you wanted to know the length of a string:

let name = "Craig"
name.characters .count

For us to access the count of the string, we would need to access the characters and then get a count.

Let's simplify this by creating an extension:

extension String {
var length: Int {
return self.characters.count
}
}

With this newly created String extension, we can now access the count by writing the following:

let name = "Craig"
name.length

As you can see, extensions are very powerful by enabling us to add extra functionality without having to change the main class or struct. The...