Book Image

iOS 10 Programming for Beginners

By : Craig Clayton
Book Image

iOS 10 Programming for Beginners

By: Craig Clayton

Overview of this book

You want to build iOS applications for iPhone and iPad—but where do you start? Forget sifting through tutorials and blog posts, this is a direct route into iOS development, taking you through the basics and showing you how to put the principles into practice. With every update, iOS has become more and more developer-friendly, so take advantage of it and begin building applications that might just take the App Store by storm! Whether you’re an experienced programmer or a complete novice, this book guides you through every facet of iOS development. From Xcode and Swift—the building blocks of modern Apple development—and Playgrounds for beginners, one of the most popular features of the iOS development experience, you’ll quickly gain a solid foundation to begin venturing deeper into your development journey. For the experienced programmer, jump right in and learn the latest iOS 10 features. You’ll also learn the core elements of iOS design, from tables to tab bars, as well as more advanced topics such as gestures and animations that can give your app the edge. Find out how to manage databases, as well as integrating standard elements such as photos, GPS into your app. With further guidance on beta testing with TestFlight, you’ll quickly learn everything you need to get your project on the App Store!
Table of Contents (26 chapters)
iOS 10 Programming for Beginners
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface
Free Chapter
1
Getting Familiar with Xcode
Index

Organizing your code


Earlier, we wrote an extension for our RestaurantItem, in which we created a custom init() method that takes a dictionary object. Extensions are useful for adding your own functionality onto standard libraries, structs, or classes, such as arrays, ints, and strings, or onto your own data types, such as RestaurantItem.

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 count by writing the following:

let name = "Craig"
name.length

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

Up until now, we paid very little attention to file structure and more...