Book Image

iOS 5 Essentials

By : Steven F. Daniel
Book Image

iOS 5 Essentials

By: Steven F. Daniel

Overview of this book

Building on the phenomenal success of its predecessor iOS 5 includes over 200 new user features as well as an updated SDK containing over 1,500 new APIs. iOS 5 looks set to reinforce the iPhone's dominance in the smartphone market. iOS 5 Essentials will help you learn how to build simple, yet powerful iOS 5 applications incorporating iCloud Storage, Twitter, Core Image and Newsstand integration. You will start by learning about what's new in iOS 5. You'll look at the iCloud Storage APIs, Automatic Reference Counting, Twitter and AirPlay integration, how to use the various Core Image filters using the Cocoa framework, and the new features of the iOS 5 SDK. After this, you'll jump straight in and create applications using Xcode and Interface Builder using the new storyboard layout. We then finish up by learning how to make your applications run smoothly using the Xcode instruments.
Table of Contents (16 chapters)

Chapter 2. Using iCloud and the Storage APIs

In this chapter, we will be introducing the features of iCloud and their storage APIs. These allow you to develop your application to write and store user documents in a common and central location, with the ability to access those items from all of your computers and iOS devices.

Making a user's document available using iCloud, means that a user can view or edit those documents directly from any device, without the need of having to sync or transfer those files. Storing documents in a user's iCloud account provides an added layer of security for that user. Even if the user loses their device, the documents can easily be retrieved from the device, provided that they are contained within iCloud storage.

Through the use of the iCloud storage APIs, you can make your applications capable enough to store user documents and key-value data, allowing this information, and any changes to it, to be pushed to all of your iOS devices all at the same time. By...