iPhoneOSTechOverview

Embed Size (px)

Citation preview

  • 8/7/2019 iPhoneOSTechOverview

    1/64

    iOS Technology OverviewGeneral

    2010-11-15

  • 8/7/2019 iPhoneOSTechOverview

    2/64

    Apple Inc.

    2010 Apple Inc.

    All rights reserved.

    No partof this publication maybe reproduced,

    stored in a retrieval system, or transmitted, in

    any form or by any means, mechanical,

    electronic, photocopying, recording, or

    otherwise, without prior written permission of

    Apple Inc., with the following exceptions: Any

    person is hereby authorized to store

    documentation on a single computer for

    personal use only and to print copies of

    documentation for personal use provided that

    the documentation contains Applescopyright

    notice.

    The Apple logo is a trademark of Apple Inc.

    No licenses, express or implied, are grantedwith respectto anyof thetechnology described

    in this document. Apple retains all intellectual

    property rights associated withthe technology

    described in this document. This document is

    intended to assist application developers to

    develop applications only for Apple-labeled

    computers.

    Apple Inc.

    1 Infinite Loop

    Cupertino, CA 95014

    408-996-1010

    iAd is a service mark of Apple Inc.

    iTunes Store is a registered service mark ofApple Inc.

    Apple, the Apple logo, AirPlay, Apple TV,

    AppleScript, Bonjour, Cocoa, Cocoa Touch,

    Instruments, iPhone, iPod, iPod touch, iTunes,

    Keychain, Mac, MacOS, Macintosh, Objective-C,

    Pages, Quartz, Safari, Spotlight, and Xcode are

    trademarks of Apple Inc., registered in the

    United States and other countries.

    iPad and Retina are trademarks of Apple Inc.

    IOS is a trademark or registered trademark of

    Ciscoin theU.S.and othercountriesand isused

    under license.

    Intel and Intel Core are registered trademarks

    of Intel Corportation or its subsidiaries in theUnited States and other countries.

    Java is a registered trademark of Oracleand/or

    its affiliates.

    OpenGL is a registered trademark of Silicon

    Graphics, Inc.

    UNIX is a registered trademark of The Open

    Group

    Even though Apple has reviewed this document,APPLEMAKES NOWARRANTYOR REPRESENTATION,EITHER EXPRESS OR IMPLIED, WITH RESPECT TOTHIS DOCUMENT, ITS QUALITY, ACCURACY,MERCHANTABILITY, OR FITNESSFOR A PARTICULARPURPOSE. AS A RESULT, THIS DOCUMENT ISPROVIDED AS IS, AND YOU, THE READER, AREASSUMING THE ENTIRE RISK AS TO ITS QUALITYAND ACCURACY.

    IN NO EVENT WILL APPLE BE L IABLE FOR DIRECT,INDIRECT, SPECIAL, INCIDENTAL, ORCONSEQUENTIAL DAMAGESRESULTING FROM ANYDEFECT OR INACCURACY IN THISDOCUMENT,evenif advised of the possibility of such damages.

    THEWARRANTY ANDREMEDIES SETFORTH ABOVEAREEXCLUSIVEANDIN LIEU OFALL OTHERS,ORALOR WRITTEN, EXPRESS OR IMPLIED. No Appledealer, agent, or employee is authorized to makeany modification, extension, or addition to thiswarranty.

    Somestates do notallow theexclusion orlimitationof implied warranties or liability for incidental or

    consequential damages,so the abovelimitation orexclusion maynot applyto you.Thiswarranty givesyou specific legal rights, and you may also haveother rights which vary from state to state.

  • 8/7/2019 iPhoneOSTechOverview

    3/64

    Contents

    Introduction Introduction 9

    Who Should Read This Document 10

    Organization of This Document 10

    Getting the iOS SDK 11

    Providing Feedback 11

    See Also 11

    Chapter 1 About iOS Development 13

    The iOS Architecture 13

    Whats in the iOS SDK? 14

    What Can You Create? 15

    How to Use the Developer Library 16

    Chapter 2 Cocoa Touch Layer 19

    High-Level Features 19

    Multitasking 19

    Printing 20

    Data Protection 20

    Apple Push Notification Service 20

    Local Notifications 21

    Gesture Recognizers 21

    File-Sharing Support 21

    Peer-to-Peer Services 22

    Standard System View Controllers 22

    External Display Support 23

    Cocoa Touch Frameworks 23

    Address Book UI Framework 23

    Event Kit UI Framework 23

    Game Kit Framework 23

    iAd Framework 24

    Map Kit Framework 24

    Message UI Framework 25

    UIKit Framework 25

    Chapter 3 Media Layer 27

    Graphics Technologies 27

    Audio Technologies 27

    Video Technologies 28

    32010-11-15 | 2010 Apple Inc. All Rights Reserved.

  • 8/7/2019 iPhoneOSTechOverview

    4/64

    AirPlay 29

    Media Layer Frameworks 29

    Assets Library Framework 30

    AV Foundation Framework 30

    Core Audio 31

    Core Graphics Framework 31

    Core MIDI Framework 31

    Core Text Framework 32

    Core Video Framework 32

    Image I/O Framework 32

    Media Player Framework 32

    OpenAL Framework 33

    OpenGL ES Framework 33

    Quartz Core Framework 33

    Chapter 4 Core Services Layer 35High-Level Features 35

    Block Objects 35

    Grand Central Dispatch 35

    In-App Purchase 36

    SQLite 36

    XML Support 36

    Core Services Frameworks 36

    Address Book Framework 36

    CFNetwork Framework 37

    Core Data Framework 37

    Core Foundation Framework 38

    Core Location Framework 38

    Core Media Framework 39

    Core Telephony Framework 39

    Event Kit Framework 39

    Foundation Framework 39

    Mobile Core Services Framework 40

    Quick Look Framework 40

    Store Kit Framework 40

    System Configuration Framework 41

    Chapter 5 Core OS Layer 43

    Accelerate Framework 43

    External Accessory Framework 43

    Security Framework 43

    System 44

    42010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CONTENTS

  • 8/7/2019 iPhoneOSTechOverview

    5/64

    Chapter 6 Migrating from Cocoa 45

    General Migration Notes 45

    Migrating Your Data Model 45

    Migrating Your User Interface 46

    Memory Management 46

    Framework Differences 46

    UIKit Versus AppKit 47

    Foundation Framework Differences 49

    Changes to Other Frameworks 50

    Appendix A iOS Developer Tools 53

    Xcode 53

    Interface Builder 55

    Instruments 56

    Appendix B iOS Frameworks 59

    Device Frameworks 59

    Simulator Frameworks 62

    System Libraries 62

    Document Revision History 63

    52010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CONTENTS

  • 8/7/2019 iPhoneOSTechOverview

    6/64

    62010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CONTENTS

  • 8/7/2019 iPhoneOSTechOverview

    7/64

    Figures and Tables

    Chapter 1 About iOS Development 13

    Figure 1-1 Applications layered on top of iOS 13

    Figure 1-2 Layers of iOS 14

    Figure 1-3 The iOS Developer Library 17

    Figure 1-4 Quick Help in Xcode 17

    Chapter 3 Media Layer 27

    Table 3-1 Core Audio frameworks 31

    Chapter 6 Migrating from Cocoa 45

    Table 6-1 Differences in interface technologies 47

    Table 6-2 Foundation technologies unavailable in iOS 49

    Table 6-3 Differences in frameworks common to iOS and Mac OS X 50

    Appendix A iOS Developer Tools 53

    Figure A-1 An Xcode project window 54

    Figure A-2 Running a project from Xcode 55

    Figure A-3 Building iOS interfaces using Interface Builder 56

    Figure A-4 Using Instruments to tune your application 57

    Appendix B iOS Frameworks 59

    Table B-1 Device frameworks 59

    72010-11-15 | 2010 Apple Inc. All Rights Reserved.

  • 8/7/2019 iPhoneOSTechOverview

    8/64

    82010-11-15 | 2010 Apple Inc. All Rights Reserved.

    FIGURES AND TABLES

  • 8/7/2019 iPhoneOSTechOverview

    9/64

    iOS is the operating system at the heart of iPhone, iPod touch, and iPad devices.

    The iOS platform was built using the knowledge that went into the creation of Mac OS X, and many of the

    tools and technologies used for development on the platform have their roots in Mac OS X as well. Despite

    its similarities to Mac OS X, iOS does not require experience developing Mac OS X applications. The iOSSoftware Development Kit (SDK) provides everything you need to get started creating iOS applications.

    92010-11-15 | 2010 Apple Inc. All Rights Reserved.

    INTRODUCTION

    Introduction

  • 8/7/2019 iPhoneOSTechOverview

    10/64

    Who Should Read This Document

    iOS Technology Overviewis an introductory guide for anyone who is new to the iOS platform. It provides an

    overview of the technologies and tools that have an impact on the development process and provides links

    to relevant documents and other sources of information. You should use this document to do the following:

    Orient yourself to the iOS platform.

    Learn about iOS software technologies, why you might want to use them, and when.

    Learn about development opportunities for the platform.

    Get tips and guidelines on how to move to iOS from other platforms.

    Find key documents relating to the technologies you are interested in.

    This document does not provide information about user-level system features or about features that have

    no impact on the software development process.

    New developers should find this document useful for getting familiar with iOS. Experienced developers can

    use it as a road map for exploring specific technologies and development techniques.

    Organization of This Document

    This document has the following chapters and appendixes:

    About iOS Development (page 13) provides a high-level overview of iOS and the iOS SDK.

    Cocoa Touch Layer (page 19) presents the technologies in the Cocoa Touch layer, which provides thehigh-level application behaviors.

    Media Layer (page 27) presents the technologies in the Media layer, which handle the presentationof visual and audible content.

    Core Services Layer (page 35) presents the technologies in the Core Services layer, which handle avariety of hardware-specific and system-specific tasks.

    Core OS Layer (page 43) presents the technologies in the Core OS layer, which provide low-levelbuilding blocks for applications.

    Migrating from Cocoa (page 45) provides starter advice for developers who are migrating an existingCocoa application to iOS.

    iOS Frameworks (page 59)provides a summary of thesystemframeworks andsome general informationabout them, including when each framework was introduced in iOS.

    iOS Developer Tools (page 53) provides an overview of the applications you use to create softwarefor iOS.

    10 Who Should Read This Document2010-11-15 | 2010 Apple Inc. All Rights Reserved.

    INTRODUCTION

    Introduction

  • 8/7/2019 iPhoneOSTechOverview

    11/64

    Getting the iOS SDK

    The iOS SDK contains the toolsneeded to design, create, debug, andoptimizesoftware for iOS. It also contains

    header files, sample code, and documentation for the platforms technologies. You can download the iOS

    SDK from the members area of the iOS Dev Center, which is located at:

    http://developer.apple.com/devcenter/ios

    For additional information about the tools available for working with Mac OS X and its technologies, see iOS

    Developer Tools (page 53).

    Providing Feedback

    If you have feedback about the documentation, you can provide it using the built-in feedback form at the

    bottom of every page.

    If you encounter bugs in Apple software or documentation, you are encouraged to report them to Apple.

    You can also file enhancement requests to indicate features you would like to see in future revisions of a

    product or document. To file bugs or enhancement requests, go to the Bug Reporting page of the Apple

    Developer website:

    http://developer.apple.com/bugreporter/

    To file bugs, you must be registered as an Apple Developer. You can obtain a login name for free by following

    the instructions on the Apple Developer Registration page.

    See Also

    If you are new to iOS development, this book provides only an overview of the system. To learn more about

    how to develop iOS applications, you should read the following documents:

    Cocoa Fundamentals Guide provides fundamental information about the design patterns and practicesused to develop iOS applications.

    iOS Application Programming Guide provides a detailed look at the architecture of iOS applications andshows you how key technologies, such as multitasking, affect the overall design of your application.

    iOSHuman Interface Guidelines provides guidance and informationabout howto design your applicationsuser interface.

    iOS Development Guide describes the iOS development process from the perspective of the tools. Thisdocument covers the configuration and provisioning of devices for development and covers the use of

    Xcode (and other tools) for building, running, and testing your software.

    The Objective-C Programming Language introduces the Objective-C programming language and theObjective-C runtime.

    Getting the iOS SDK 112010-11-15 | 2010 Apple Inc. All Rights Reserved.

    INTRODUCTION

    Introduction

    http://developer.apple.com/devcenter/ioshttp://developer.apple.com/http://developer.apple.com/http://developer.apple.com/bugreporter/http://developer.apple.com/programs/start/register/create.phphttp://developer.apple.com/programs/start/register/create.phphttp://developer.apple.com/bugreporter/http://developer.apple.com/http://developer.apple.com/http://developer.apple.com/devcenter/ios
  • 8/7/2019 iPhoneOSTechOverview

    12/64

    12 See Also2010-11-15 | 2010 Apple Inc. All Rights Reserved.

    INTRODUCTION

    Introduction

  • 8/7/2019 iPhoneOSTechOverview

    13/64

    iOS is theoperating system that runs on iPhone, iPod touch, and iPad devices. This operating system manages

    the device hardwareand provides the technologiesrequiredto implement native applications. The operating

    system also ships with various system applications, such as Phone, Mail, and Safari, that provide standard

    system services to the user.

    The iOS SDK contains the tools and interfaces needed to develop, install, run, and test native applications.

    Native applications are built using the iOS system frameworks and Objective-C language and run directly on

    iOS. Unlike web applications, native applications are installed physically on a device and are therefore always

    available to theuser, even when thedevice is in Airplane mode. They reside next to other systemapplications

    and both the application and any user data is synced to the users computer through iTunes.

    The iOS Architecture

    The iOS architecture is similar to the basic architecture found in Mac OS X. At the highest level, iOS acts as

    an intermediary between the underlying hardware andthe applications that appear on the screen, as shown

    in Figure 1-1. The applications you createrarely talk to theunderlying hardware directly. Instead, applications

    communicatewith the hardwarethrough a set of well-defined systeminterfaces thatprotectyour application

    from hardware changes. This abstraction makes it easy to write applicationsthat work consistentlyon devices

    with different hardware capabilities.

    Figure 1-1Applications layered on top of iOS

    iOS

    Application

    Application

    System Apps

    The iOS Architecture 132010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 1

    About iOS Development

  • 8/7/2019 iPhoneOSTechOverview

    14/64

    Note: Even though your application is generally protected from changes to the underlying hardware, youstill need to account for differences between devices in your code. For example, some devices contain a

    camera while others do not. If your application can work with or without a given feature, use the interfaces

    provided by the corresponding framework to determine the availability of that feature.

    Applications that require the presence of specific hardware should declare that requirement using their

    information property list (Info.plist) file. For more information on declaring required hardware, see

    Build-Time Configuration Details in iOS Application Programming Guide.

    The implementation of iOS technologies can be viewed as a set of layers, which are shown in Figure 1-2. At

    the lower layers of the system are the fundamental services and technologies on which all applications rely;

    higher-level layers contain more sophisticated services and technologies.

    Figure 1-2 Layers of iOS

    Core OS

    Core Services

    Media

    Cocoa Touch

    As you write your code, you should prefer the use of higher-level frameworks over lower-level frameworks

    whenever possible. The higher-level frameworks are there to provide object-oriented abstractions for

    lower-level constructs. These abstractions generally make it much easier to write code because they reduce

    the amount of code you have to write and encapsulate potentially complex features, such as sockets and

    threads. Although they abstract out lower-level technologies, they do not mask those technologies from

    you. The lower-level frameworks are still available for developers who prefer to use them or who want touse aspects of those frameworks that are not exposed by the higher layers.

    The technologies and frameworks for each layer are described in later chapters of this document.

    Whats in the iOS SDK?

    The iOS SDK comes with all of the interfaces, tools, and resources needed to develop iOS applications from

    your Intel-based Macintosh computer.

    Appledelivers most of its system interfaces in special packages calledframeworks. A frameworkis a directorythat contains a dynamic shared library and the resources (such as header files, images, helper applications,

    and so on) needed to support that library. To use frameworks, you link them into your application project

    just as you would any other shared library. Linking them to your project gives you access to the features of

    the frameworkandalso lets the development tools know where to find the header files andother framework

    resources.

    14 Whats in the iOS SDK?2010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 1

    About iOS Development

  • 8/7/2019 iPhoneOSTechOverview

    15/64

    In addition to frameworks, Apple also delivers some technologies in the form of standard shared libraries.

    Because iOS is based on UNIX, many of the technologies that form the lower-levels of the operating system

    are derived from open source technologies. The interfaces for these technologies are therefore available in

    the standard library and interface directories.

    Some other key components of the SDK include:

    Xcode Toolsthe tools that support iOS application development, including the following keyapplications:

    Xcodean integrated development environment that manages your application projects and letsyou edit, compile, run, and debug your code. Xcode integrates with many other tools and is the

    main application you use during development.

    Interface Buildera tool you use to assemble your user interface visually. The interfaceobjects youcreate are saved to a special type of resource file and loaded into your application at runtime.

    Instrumentsa runtime performance analysis and debugging tool. You can use Instruments togather information about your applications runtime behavior and identify potential problems.

    iOS Simulatora Mac OS X application that simulates the iOS technology stack, allowing you to testiOS applications locally on your Intel-based Macintosh computer.

    iOS Developer Librarythe reference and conceptual documentation that teaches you all about iOStechnologies and the application-development process. For more information, see How to Use the

    Developer Library (page 16).

    Although you can run applications in iOS Simulator, Xcode and Instruments also let you run and debug

    applications directly on an attached device. Simulator is ideal for building and testing applications quickly

    but is no substitute for testing on a real device. Development on an actual device requires signing up for

    Apples paid iOS Developer Program and configuring a device for development purposes. You can find out

    more about the iOS Developer Program at the iOS Dev Center.

    For information on how to install the iOS SDK and use it for developing iOS applications, see iOS Development

    Guide.

    What Can You Create?

    iOS supports the development of two types of applications:

    Native applications

    Web applications

    The iOS SDK supports the creation of native applications that appear on the devices Home screen only. It

    does not support the creation of other types of code, such as drivers, frameworks, or dynamic libraries. If you

    want to integrate code from a framework or dynamic library into your application, you should link that code

    statically into your applications executable file when building your project.

    What Can You Create? 152010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 1

    About iOS Development

    http://developer.apple.com/devcenter/ioshttp://developer.apple.com/devcenter/ios
  • 8/7/2019 iPhoneOSTechOverview

    16/64

    Web applicationsusea combination of HTML, cascadingstyle sheets (CSS),andJavaScript code to implement

    interactive applications that live on a web server, are transmitted over the network, and run inside the Safari

    web browser. Native applications, on the other hand, are installeddirectly on the device andcan run without

    the presence of a network connection.

    How to Use the Developer Library

    The iOS Developer Library contains the documentation, sample code, tutorials, and other information you

    need to write iOSapplications. Because thedeveloper librarycontains thousandsof pages of documentation,

    ranging from high-level getting started documents to low-level API reference documents, understanding

    how to find the information is an important step in the development process. The developer library uses a

    few techniques for organizing content that should make it easier to browse.

    You can access the iOS Developer Library from the AppleDeveloper website or from Xcode. In Xcode,choosing

    Help > Developer Documentation displays the Xcode documentation window, which is the central resource

    for accessing information about iOS development. You can use this window to browse the documentation,

    perform searches, and bookmark documents you may want to refer to later.

    When you install the iOS SDK, Xcode automatically makes the iOS Developer Library available for you to use.

    (Xcode also downloads updates for you automatically, although you can change that setting in preferences.)

    The iOS Developer Library contains a lot of information so it is worth becoming at least somewhat familiar

    with its layout. Figure 1-3 shows themain page of thedeveloper libraryin theXcodedocumentationwindow.

    The toolbar at the top of the page includes a search field and buttons for navigating around the

    documentation. You canbrowse thelibrary bytopic, by framework, or bythetype of resource you are looking

    for. You can also use the filter field above the list of documents to narrow the set of displayed documents.

    16 How to Use the Developer Library2010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 1

    About iOS Development

    http://developer.apple.com/iphonehttp://developer.apple.com/iphone
  • 8/7/2019 iPhoneOSTechOverview

    17/64

    Figure 1-3 The iOS Developer Library

    Important: The content of the iOS Developer Library is updated regularly, but you can also access the latestdocumentation, release notes, Tech Notes, Technical Q&As, and sample code from the iOS Dev Center. All

    documents are available in HTML and most are also available in PDF format.

    Because the developer library provides a tremendous amount of information, sorting through all that

    information while you are trying to write code can be cumbersome. To help you find specific information

    quickly, Xcode also provides a Quick Help window, shown in Figure 1-4. This window shows you information

    about the designated symbol, including its syntax, description, and availability. It also shows you any related

    documentation and sample code resources. Clicking the links in this window takes you to the corresponding

    resource in the developer library. To display this window, Optiondouble-click a symbol in the Xcode editor

    window.

    Figure 1-4 Quick Help in Xcode

    For more information about using the Documentation and Quick Help windows, see Xcode Workspace Guide.

    How to Use the Developer Library 172010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 1

    About iOS Development

    http://developer.apple.com/devcenter/ioshttp://developer.apple.com/devcenter/ios
  • 8/7/2019 iPhoneOSTechOverview

    18/64

    18 How to Use the Developer Library2010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 1

    About iOS Development

  • 8/7/2019 iPhoneOSTechOverview

    19/64

    The Cocoa Touch layer contains the keyframeworks for building iOS applications. This layer defines the basicapplication infrastructure and support for key technologies such as multitasking, touch-based input, push

    notifications,and many high-level system services.Whendesigning yourapplications,youshould investigate

    the technologies in this layer first to see if they meet your needs.

    High-Level Features

    The following sections describe some of the key technologies available in the Cocoa Touch layer.

    Multitasking

    Applications built using iOS SDK 4.0 or later (and running in iOS 4.0 and later) are not terminated when the

    user presses the Home button; instead, they shift to a background execution context. The multitasking

    support defined by UIKit helps your application transition to and from the background state smoothly.

    To preserve battery life, mostapplications are suspended by thesystemshortly after entering the background.

    A suspended application remains in memory but does not execute any code. This behavior allows an

    application to resume quickly when it is relaunched without consuming battery power in the meantime.

    However, applications may be allowed to continue running in the background for the following reasons:

    An application can request a finite amount of time to complete some important task.

    An applicationcandeclareitself as supporting specific servicesthatrequireregularbackground executiontime.

    An application can use local notifications to generate user alerts at designated times, whether or notthe application is running.

    Regardless of whether your application is suspended or continues running in the background, supporting

    multitasking does require additional work on your part. The system notifies your application as it transitions

    to and from the background. These notification points are your cue to perform any important application

    tasks such as saving user data.

    For more information on how to handle multitasking transitions, and for information on how to request

    background execution time, see iOS Application Programming Guide.

    High-Level Features 192010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 2

    Cocoa Touch Layer

  • 8/7/2019 iPhoneOSTechOverview

    20/64

    Printing

    Introduced in iOS 4.2, the UIKit printing support allows applications to send content wirelessly to nearby

    printers. For the most part, UIKit does all of theheavy lifting associated with printing. It manages theprinting

    interfaces, works with your application to render the printable content, and handles the scheduling and

    execution of print jobs on the printer.

    Print jobs submitted by your application are handed off to the printing system, which manages the actual

    printing process.Print jobs from all applications on a devicearequeuedandprinted on a first-come, first-served

    basis. Users canget thestatus of print jobs from the Print Center applicationand caneven usethat application

    to cancel print jobs. All other aspects of printing are handled for you automatically by the system.

    Note: Wireless printing is available only on devices that support multitasking. You can use theUIPrintInteractionController object to detect whether printing is available to your application.

    For information about how to incorporate printing support into your applications, see Printing in Drawing

    and Printing Guide for iOS.

    Data Protection

    Introduced in iOS4.0, data protectionallows applications that work with sensitiveuser data to take advantage

    of the built-in encryption available on some devices. When your application designates a specific file as

    protected, the systemstores that file on-disk in an encrypted format. While the device is locked, the contents

    of the file are inaccessible to both your application and to any potential intruders. However, when the device

    is unlocked by the user, a decryption key is created to allow your application to access the file.

    Implementing data protection requires you to be considerate in how you create and manage the data you

    want to protect. Applications must be designed to secure the data at creation time and to be prepared for

    access changes when the user locks and unlocks the device.

    For more information about how to add data protection to the files of your application, see Implementing

    Standard Application Behaviors in iOS Application Programming Guide.

    Apple Push Notification Service

    Introduced in iOS 3.0, the Apple Push Notification Service provides a way to alert users of new information,

    even when your application is not actively running. Using this service, you can push text notifications, add

    a badge to your application icon, or trigger audible alerts on user devices at any time. These messages let

    users know that they should open your application to receive the related information.

    From a design standpoint, there are two parts to making push notifications work for iOS applications. First,

    theapplication must request the delivery of notifications and process the notification data once it is delivered.

    Second, you need to provide a server-side process to generate the notifications in the first place. This process

    lives on your own local server and works with Apple Push Notification Service to trigger the notifications.

    For more information about how to configure your application to use remote notifications, see Local and

    Push Notification Programming Guide.

    20 High-Level Features2010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 2

    Cocoa Touch Layer

  • 8/7/2019 iPhoneOSTechOverview

    21/64

    Local Notifications

    Introduced in iOS 4.0, local notifications complement the existing push notification mechanism by giving

    applications an avenue for generating the notifications locally instead of relying on an external server.

    Applications running in the background can use local notifications as a way to get a users attention when

    important events happen. For example, a navigation application running in the background can use localnotifications to alert the user when it is time to make a turn. Applications can also schedule the delivery of

    local notifications for a future date and time and have those notifications delivered even if the application

    is not running.

    The advantage of local notifications is that they are independent of your application. Once a notification is

    scheduled, the system manages the delivery of it. Your application does not even have to be running when

    the notification is delivered.

    For more information about using local notifications, see Local and Push Notification Programming Guide.

    Gesture RecognizersIntroduced in iOS 3.2, gesture recognizers are objects that you attach to views and use to detect common

    types of gestures such as swipes and pinches. After attaching a gesture recognizer to your view, you tell it

    what action to perform when the gesture occurs. The gesture recognizer object then tracks the raw touch

    events and applies the system-defined heuristics for what the given gesture should be. Without gesture

    recognizers, you must do all this work yourself, which can be quite complicated.

    UIKit includes a UIGestureRecognizer class that defines the basic behavior for all gesture recognizers.

    You can define your own custom gesture recognizer subclasses or use one of the UIKit-supplied subclasses

    to handle any of the following standard gestures:

    Tapping (any number of taps)

    Pinching in and out (for zooming)

    Panning or dragging

    Swiping (in any direction)

    Rotating (fingers moving in opposite directions)

    Long presses

    For more information about the available gesture recognizers, see Event Handling Guide for iOS.

    File-Sharing Support

    Introduced in iOS 3.2, file-sharing support lets applications make user data files available via iTunes 9.1 and

    later. An application that declares its support for filesharing makes the contents of its/Documentsdirectory

    available to the user. The user can then move files in and out of this directory as needed from iTunes. This

    feature does not allow your application tosharefiles with other applications on the same device; that behavior

    requires the pasteboard or a document interaction controller object.

    High-Level Features 212010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 2

    Cocoa Touch Layer

  • 8/7/2019 iPhoneOSTechOverview

    22/64

    To enable file sharing for your application, do the following:

    1. Add the UIFileSharingEnabled key to your applications Info.plist file and set the value of thekey to YES.

    2. Put whatever files you want to share in your applications Documents directory.

    3. When the device is plugged into the users computer, iTunes displays a File Sharing section in the Appstab of the selected device.

    4. The user can add files to this directory or move files to the desktop.

    Applications that support file sharing should be able to recognize when files have been added to the

    Documents directory and respond appropriately. For example, your application might make the contents of

    any new files available from its interface. You should never present the user with the list of files in this directory

    and ask them to decide what to do with those files.

    Foradditional informationabout theUIFileSharingEnabled key, see InformationPropertyList KeyReference.

    Peer-to-Peer Services

    Introduced in iOS 3.0, the Game Kit framework provides peer-to-peer connectivity over Bluetooth. You can

    use peer-to-peer connectivity to initiate communication sessions with nearby devices and implement many

    of the features found in multiplayer games. Although primarily used in games, you can also use this feature

    in other types of applications.

    For information about how to use peer-to-peer connectivity features in your application, see Game Kit

    Programming Guide. For an overview of the Game Kit framework, see Game Kit Framework (page 23).

    Standard System View Controllers

    Many of the frameworks in the Cocoa Touch layer contain view controllers for presenting standard system

    interfaces. You are encouraged to use these view controllers in your applications to present a consistent user

    experience. Whenever you need to perform one of the following tasks, you should use a view controller from

    the corresponding framework:

    Display or edit contact informationUse the view controllers in the Address Book UI framework.

    Create or edit calendar eventsUse the view controllers in the Event Kit UI framework.

    Compose an email or SMS messageUse the view controllers in the Message UI framework.

    Open or preview the contents of a fileUse the UIDocumentInteractionController class in theUIKit framework.

    Takea picture or choosea photo from theusers photo libraryUse theUIImagePickerControllerclass in the UIKit framework.

    Shoot a video clipUse the UIImagePickerController class in the UIKit framework.

    22 High-Level Features2010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 2

    Cocoa Touch Layer

  • 8/7/2019 iPhoneOSTechOverview

    23/64

    For information on how to present and dismiss view controllers, see View Controller Programming Guide for

    iOS. For information about the interface presented by a specific view controller, see the corresponding

    framework reference.

    External Display SupportIntroduced in iOS3.2, external display support allows some iOS-based devices to be connected to an external

    display through a set of supported cables. When connected, the associated screen can be used by the

    application to display content. Information about the screen, including its supportedresolutions, is accessible

    through the interfaces of the UIKit framework. You also use that framework to associate your applications

    windows with one screen or another.

    For more information about how to connect to, and display content on, an external display, see View

    Programming Guide for iOS.

    Cocoa Touch Frameworks

    The following sections describe the frameworks of the Cocoa Touch layer and the services they offer.

    Address Book UI Framework

    The Address Book UI framework (AddressBookUI.framework) is an Objective-C programming interface

    that you use to display standard system interfaces for creating new contacts and for editing and selecting

    existing contacts. This framework simplifies thework neededto display contact information in your application

    andalso ensures that your application uses thesame interfaces as other applications, thus ensuring consistency

    across the platform.

    For more information about the classes of the Address Book UI framework and how to use them, see Address

    Book Programming Guide for iOS and Address Book UI Framework Reference for iOS.

    Event Kit UI Framework

    Introduced in iOS 4.0, the Event Kit UI framework (EventKitUI.framework) provides view controllers for

    presenting the standard system interfaces for viewing and editing calendar-related events. This framework

    builds upon the event-related data in the Event Kit framework, which is described in Event Kit

    Framework (page 39).

    For more information about the classes andmethods of this framework, see Event Kit UI Framework Reference.

    Game Kit Framework

    Introduced in iOS 3.0, the Game Kit framework (GameKit.framework) lets you add peer-to-peer network

    capabilities to your applications. Specifically, this framework provides support for peer-to-peer connectivity

    and in-game voice features. Although these features are most commonly found in multiplayer network

    games, you can incorporate them into applications other than games as well. The framework provides

    Cocoa Touch Frameworks 232010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 2

    Cocoa Touch Layer

  • 8/7/2019 iPhoneOSTechOverview

    24/64

    networking features through a simple (yet powerful) set of classes built on top of Bonjour. These classes

    abstract out many of the network details. For developers who might be inexperienced with networking

    programming, the framework allows them to incorporate networking features into their applications.

    Introduced in iOS 4.1, Game Center is an extension to the Game Kit framework that provides support for the

    following features:

    Aliases, to allow users to create their own online persona. Users log in to Game Center and interact withother players anonymously through their alias. Players can set status messages as well as mark specific

    people as their friends.

    Leaderboards, to allow your application to post user scores to Game Center and retrieve them later. Youmight use this feature to show the best scores among all users of your application.

    Matchmaking, to allow you to create multiplayer games by connecting players who are logged intoGame Center. Players do not have to be local to each other to join a multiplayer game.

    Achievements, to allow you to record the progress a player has made in your game.

    For more information about howto use theGame Kit framework, see Game Kit Programming Guide and Game

    Kit Framework Reference.

    iAd Framework

    Introduced in iOS 4.0, the iAd framework (iAd.framework) lets you deliver banner-based advertisements

    from your application.Advertisements are incorporatedinto standard views that you integrate into your user

    interface and present when you want. The views themselves work with Apples ad service to automatically

    handle all the work associated with loading and presenting the ad content and responding to taps in those

    ads.

    For more information about using iAd in your applications, see iAd Programming Guide.

    Map Kit Framework

    Introduced in iOS 3.0, the Map Kit framework (MapKit.framework) provides a scrollable map interface that

    you can integrate into your existing view hierarchies. You can use this map to provide directions or highlight

    points of interest. Applications can programmatically set attributes of the map or let the user navigate the

    map freely. You can also annotate the map with custom images or content.

    In iOS 4.0, the basic map view gained support for draggable annotations and custom overlays. Draggable

    annotations allow you to reposition an annotation, either programmatically or through user interactions,

    after it has been placed on the map. Overlays offer a way to create complex map annotations that comprisemore than one point. For example, you can use overlays to layer information such as bus routes, election

    maps, park boundaries, or weather information (such as radar data) on top of the map.

    For more information about using classes of the Map Kit framework, see Location Awareness Programming

    Guide.

    24 Cocoa Touch Frameworks2010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 2

    Cocoa Touch Layer

  • 8/7/2019 iPhoneOSTechOverview

    25/64

    Message UI Framework

    Introduced in iOS3.0, the Message UI framework (MessageUI.framework) provides support for composing

    and queuing email messages in the users outbox. The composition support consists of a view controller

    interface that you present in your application. You can prepopulate the fields of this view controller to set

    the recipients, subject, body content, and any attachments you want to include with the message. Afterpresenting the view controller, the user then has the option of editing the message prior to sending it.

    In iOS 4.0 and later, this framework provides a view controller for presenting an SMS composition screen.

    You can use this view controller to create and edit SMS messages without leaving your application. As with

    the mail composition interface, this interface gives the user the option to edit the message before sending

    it.

    For more information about the classes of the Message UI framework, see Message UI Framework Reference.

    UIKit Framework

    The UIKit framework (UIKit.framework) provides the key infrastructure for implementing graphical,

    event-driven applications in iOS. Every iOS application uses this framework to implement the following core

    features:

    Application management

    User interface management

    Graphics and windowing support

    Multitasking support; see Multitasking (page 19)

    Printing support; see Printing (page 20)

    Support for handling touch and motion-based events

    Objects representing the standard system views and controls

    Support for text and web content

    Cut, copy, and paste support

    Support for animating user-interface content

    Integration with other applications on the system through URL schemes

    Support for the Apple Push Notification Service; see Apple Push Notification Service (page 20)

    Accessibility support for disabled users

    Local notification scheduling and delivery; see Local Notifications (page 21)

    PDF creation

    Support for using custom input views that behave like the system keyboard

    Support for creating custom text views that interact with the system keyboard

    Cocoa Touch Frameworks 252010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 2

    Cocoa Touch Layer

  • 8/7/2019 iPhoneOSTechOverview

    26/64

    In addition to providing the fundamental code for building your application, UIKit also incorporates support

    for some device-specific features, such as the following:

    Accelerometer data

    The built-in camera (where present)

    The users photo library

    Device name and model information

    Battery state information

    Proximity sensor information

    Remote-control information from attached headsets

    For information about the classes of the UIKit framework, see UIKit Framework Reference.

    26 Cocoa Touch Frameworks2010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 2

    Cocoa Touch Layer

  • 8/7/2019 iPhoneOSTechOverview

    27/64

    The Media layer contains the graphics, audio, and video technologies geared toward creating the best

    multimedia experience available on a mobile device. The technologies in this layer were designed to make

    it easy for you to build applications that look and sound great.

    Graphics Technologies

    High-quality graphics are an important part of all iOS applications. The simplest (and most efficient) way to

    create an application is to use prerendered images together with the standard views and controls of the

    UIKit framework and let the system do the drawing. However, there may be situations where you need togo beyond simple graphics. In those situations, you can use the following technologies to manage your

    applications graphical content:

    Core Graphics (also known as Quartz) handles native 2D vector- and image-based rendering.

    Core Animation (part of the Quartz Core framework) provides advanced support for animating viewsand other content.

    OpenGL ES provides support for 2D and 3D rendering using hardware-accelerated interfaces.

    Core Text provides a sophisticated text layout and rendering engine.

    Image I/O provides interfaces for reading and writing most image formats. The Assets Library framework provides access to the photos and videos in the users photo library.

    For the most part, applications running on devices with Retina displays should work with little or no

    modifications. Any content you draw is automatically scaled as needed to support high-resolution screens.

    For vector-based drawing code, the system frameworks automatically use any extra pixels to improve the

    crispness of your content. And if you use images in your application, UIKit provides support for loading

    high-resolution variants of your existing images automatically. For more information about what you need

    to do to support high-resolution screens, see Supporting High-Resolution Screens in iOS Application

    Programming Guide.

    For information about the graphics-related frameworks, see the corresponding entries in Media Layer

    Frameworks (page 29).

    Audio Technologies

    The audio technologies available in iOS are designed to help you provide a rich audio experience for your

    users. This experience includes the ability to play high-quality audio, record high-quality audio, and trigger

    the vibration feature on certain devices.

    Graphics Technologies 272010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 3

    Media Layer

  • 8/7/2019 iPhoneOSTechOverview

    28/64

    The system provides several ways to play back and record audio content. The frameworks in the following

    list are ordered from high level to low level, with the Media Player framework offering the highest-level

    interfaces you can use. When choosing an audio technology, remember that higher-level frameworks are

    easier to use and are generally preferred.Lower-level frameworks offer moreflexibility and controlbut require

    you to do more work.

    The Media Player framework provides easy access to the users iTunes library and support for playingtracks and playlists.

    The AV Foundation framework provides a set of easy-to-use Objective-C interfaces for managing audioplayback and recording.

    OpenAL provides a set of cross-platform interfaces for delivering positional audio.

    The Core Audio frameworks offer both simple and sophisticated interfaces for playing and recordingaudio content. You use these interfaces for playing system alert sounds, triggering the vibrate capability

    of a device, and managing the buffering and playback of multichannel local or streamed audio content.

    The audio technologies in iOS support the following audio formats:

    AAC

    Apple Lossless (ALAC)

    A-law

    IMA/ADPCM (IMA4)

    Linear PCM

    -law

    DVI/Intel IMA ADPCM Microsoft GSM 6.10

    AES3-2003

    For information about each of the audio frameworks, see the corresponding entry in Media Layer

    Frameworks (page 29).

    Video Technologies

    Whether you areplaying movie files from your application or streaming them from the network, iOSprovides

    several technologies to play your video-based content. On devices with the appropriate video hardware, you

    can also use these technologies to capture video and incorporate it into your application.

    The system provides several ways to play and record video content that you can choose depending on your

    needs. When choosing a video technology, remember that the higher-level frameworks simplify the work

    you have to do to support thefeatures you need andaregenerally preferred. The frameworks in thefollowing

    list are ordered from highest to lowest level, with the Media Player framework offering the highest-level

    interfaces you can use.

    28 Video Technologies2010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 3

    Media Layer

  • 8/7/2019 iPhoneOSTechOverview

    29/64

    The UIImagePickerController class in UIKit provides a standard interface for recording video ondevices with a supported camera.

    TheMedia Player framework provides a setof simple-to-use interfaces for presenting full- or partial-screenmovies from your application.

    The AV Foundation framework provides a set of Objective-C interfaces for managing the capture andplayback of movies.

    Core Media describes the low-level datatypes used by the higher-level frameworks andprovides low-levelinterfaces for manipulating media.

    The video technologies in iOS support the playback of movie files with the .mov, .mp4, .m4v, and .3gp

    filename extensions and using the following compression standards:

    H.264 video, up to 1.5 Mbps, 640 by 480 pixels, 30 frames per second, Low-Complexity version of theH.264 Baseline Profile with AAC-LC audio up to 160 Kbps, 48 kHz, stereo audio in .m4v, .mp4, and .mov

    file formats

    H.264 video, up to 768 Kbps, 320 by 240 pixels, 30 frames per second, Baseline Profile up to Level 1.3with AAC-LC audio up to 160 Kbps, 48 kHz, stereo audio in .m4v, .mp4, and .mov file formats

    MPEG-4video, up to 2.5 Mbps, 640 by 480pixels, 30 frames per second, SimpleProfile with AAC-LC audioup to 160 Kbps, 48 kHz, stereo audio in .m4v, .mp4, and .mov file formats

    Numerous audio formats, including the ones listed in Audio Technologies (page 27)

    For information about each of thevideoframeworks in theMedia layer, see the corresponding entry in Media

    Layer Frameworks (page 29). For more information on using the UIImagePickerController class, see

    Camera Programming Topics for iOS.

    AirPlay

    AirPlay is a technology that lets your application streamaudio to AppleTV andto third-party AirPlay speakers

    and receivers. AirPlay support is built in to the AV Foundation framework and the Core Audio family of

    frameworks. Any audio content you play using these frameworks is automatically made eligible for AirPlay

    distribution. Once the user chooses to play your audio using AirPlay, it is routed automatically by the system.

    For information on playing audio content, see Multimedia Programming Guide.

    Media Layer Frameworks

    The following sections describe the frameworks of the Media layer and the services they offer.

    AirPlay 292010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 3

    Media Layer

  • 8/7/2019 iPhoneOSTechOverview

    30/64

    Assets Library Framework

    Introduced in iOS 4.0, the Assets Library framework (AssetsLibrary.framework) provides a query-based

    interface for retrieving photos and videos from the users device. Using this framework, you can access the

    same assets that arenormally managed by thePhotos application, including items in the users saved photos

    album and any photos and videos that were imported onto the device. You can also save new photos andvideos back to the users saved photos album.

    Formore information about theclasses andmethods of this framework,see AssetsLibraryFrameworkReference.

    AV Foundation Framework

    Introduced in iOS 2.2, the AV Foundation framework (AVFoundation.framework) contains Objective-C

    classes for playing audio content. You can use these classes to play file- or memory-based sounds of any

    duration. You can play multiple sounds simultaneously and control various playback aspects of each sound.

    In iOS 3.0 and later, this framework also includes support for recording audio and managing audio session

    information.

    In iOS 4.0 and later, the services offered by this framework were expanded to include:

    Media asset management

    Media editing

    Movie capture

    Movie playback

    Track management

    Metadata management for media items Stereophonic panning

    Precise synchronization between sounds

    An Objective-C interface for determining details about sound files, such as the data format, sample rate,and number of channels

    The AV Foundation framework is a single source for recording and playing back audio and video in iOS. This

    framework also provides much more sophisticated support for handling and managing media items than

    higher-level frameworks.

    For more information about the classes of the AV Foundation framework, see AV Foundation Framework

    Reference.

    30 Media Layer Frameworks2010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 3

    Media Layer

  • 8/7/2019 iPhoneOSTechOverview

    31/64

    Core Audio

    Native support for audio is provided by the Core Audio family of frameworks, which are listed in Table 3-1.Core Audio is a C-based interface that supports the manipulation of stereo-based audio. You can use CoreAudio in iOS to generate, record, mix, and play audio in your applications. You can also use Core Audio to

    trigger the vibrate capability on devices that support it.

    Table 3-1 Core Audio frameworks

    ServicesFramework

    Defines the audio data types used throughout Core Audio.CoreAudio.framework

    Provides playback and recording services for audio files and streams. This

    framework also provides support for managing audio files, playing system

    alert sounds, and triggering the vibrate capability on some devices.

    AudioToolbox.framework

    Provides services for using the built-in audio units, which are audio

    processing modules.

    AudioUnit.framework

    For more information about Core Audio, see Core Audio Overview. For information about how to use the

    Audio Toolbox framework to play sounds, see Audio Queue Services Programming Guide and Audio Toolbox

    Framework Reference.

    Core Graphics Framework

    TheCore Graphics framework (CoreGraphics.framework) contains the interfaces for the Quartz 2Ddrawing

    API. Quartz is the same advanced, vector-based drawing engine that is used in Mac OS X. It provides support

    for path-based drawing, anti-aliased rendering, gradients, images, colors, coordinate-space transformations,andPDFdocumentcreation,display, andparsing.Although theAPI is C based, it uses object-basedabstractions

    to represent fundamental drawing objects, making it easy to store and reuse your graphics content.

    For more information on how to use Quartz to draw content, see Quartz 2D Programming Guide and Core

    Graphics Framework Reference.

    Core MIDI Framework

    Introduced in iOS 4.2, the Core MIDI framework (CoreMIDI.framework) provides a standard way to

    communicate with MIDI devices, including hardware keyboards and synthesizers. You use this framework to

    send and receive MIDI messages and to interact with MIDI peripherals connected to an iOS-based device

    using the dock connector or network.

    For more information about using this framework, see Core MIDI Framework Reference.

    Media Layer Frameworks 312010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 3

    Media Layer

  • 8/7/2019 iPhoneOSTechOverview

    32/64

    Core Text Framework

    Introduced in iOS 3.2, the Core Text framework (CoreText.framework) contains a set of simple,

    high-performance C-based interfaces for laying out textandhandling fonts. TheCore Text framework provides

    a complete text layout engine that you can use to manage the placement of text on the screen. The text you

    manage can also be styled with different fonts and rendering attributes.

    This framework is intended for use by applications that require sophisticated text handling capabilities, such

    as word-processing applications. If your application requires only simple text input and display, you should

    continue to use the existing text classes of the UIKit framework.

    For more information about using the Core Text interfaces, see Core Text Programming Guide and Core Text

    Reference Collection.

    Core Video Framework

    Introduced in iOS 4.0, the Core Video framework (CoreVideo.framework) provides buffer and buffer poolsupport for the Core Media framework. Most applications never need to use this framework directly.

    Image I/O Framework

    Introduced in iOS 4.0, the Image I/O framework (ImageIO.framework) provides interfaces for importing

    and exporting image data and image metadata. This framework makes use of the Core Graphics data types

    and functions and supports all of the standard image types available in iOS.

    For more information about the functions anddata types of this framework, see Image I/O Reference Collection.

    Media Player Framework

    TheMedia Player framework (MediaPlayer.framework) provides high-level support for playing audio and

    video content from your application. You can use this framework to play video using a standard system

    interface.

    In iOS 3.0, support was added for accessing the users iTunes music library. With this support, you can play

    music tracks and playlists, search for songs, and present a media picker interface to the user.

    In iOS 3.2, changes were made to support the playback of video from a resizable view. (Previously, only

    full-screen supportwas available.) In addition,numerous interfaces were added to support the configuration

    and management of movie playback.

    For information about the classes of the Media Player framework, see Media Player Framework Reference. For

    informationon how to use these classes to access the users iTunes library, see iPod Library AccessProgramming

    Guide.

    32 Media Layer Frameworks2010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 3

    Media Layer

  • 8/7/2019 iPhoneOSTechOverview

    33/64

    OpenAL Framework

    The Open Audio Library (OpenAL) interface is a cross-platform standard for delivering positional audio in

    applications. You can use it to implement high-performance, high-quality audio in games and other programs

    that require positional audio output. Because OpenAL is a cross-platform standard, the code modules you

    write using OpenAL on iOS can be ported to many other platforms easily.

    For information about OpenAL, including how to use it, see http://www.openal.org.

    OpenGL ES Framework

    The OpenGL ES framework (OpenGLES.framework) provides tools for drawing 2D and 3D content. It is a

    C-based framework that works closely with the device hardware to provide high frame rates for full-screen

    game-style applications.

    You always use the OpenGL framework in conjunction with the EAGL interfaces. These interfaces are part of

    the OpenGL ES framework and provide the interface between your OpenGL ES drawing code and the nativewindow objects defined by UIKit.

    In iOS 3.0 and later, the OpenGL ES framework includes support for both the OpenGL ES 2.0 and the OpenGL

    ES 1.1 interface specifications. The 2.0 specification provides support for fragment and vertex shaders and is

    available only on specific iOS-based devices running iOS 3.0 and later. Support for OpenGL ES 1.1 is available

    on all iOS-based devices and in all versions of iOS.

    For information on how to use OpenGL ES in your applications, see OpenGL ES Programming Guide for iOS.

    For reference information, see OpenGL ES Framework Reference.

    Quartz Core Framework

    The Quartz Core framework (QuartzCore.framework) contains the Core Animation interfaces. CoreAnimation is an advanced animation and compositing technology that uses an optimized rendering pathto implement complex animations and visual effects. It provides a high-level Objective-C interface for

    configuring animations and effects that are then rendered in hardware for performance. Core Animation is

    integrated into many parts of iOS, including UIKit classes such as UIView, providing animations for many

    standard system behaviors. You can also use the Objective-C interface in this framework to create custom

    animations.

    For more information on how to use Core Animation in your applications, see Core Animation Programming

    Guide and Core Animation Reference Collection.

    Media Layer Frameworks 332010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 3

    Media Layer

    http://www.openal.org/http://www.openal.org/
  • 8/7/2019 iPhoneOSTechOverview

    34/64

    34 Media Layer Frameworks2010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 3

    Media Layer

  • 8/7/2019 iPhoneOSTechOverview

    35/64

    The Core Services layer contains the fundamental system services that all applications use. Even if you do

    not use these services directly, many parts of the system are built on top of them.

    High-Level Features

    The following sections describe some of the key technologies available in the Core Services layer.

    Block Objects

    Introduced in iOS 4.0, block objects are a C-level language construct that you can incorporate into your C

    and Objective-C code. A block object is essentially an anonymous function and the data that goes with that

    function, somethingwhich in other languages is sometimes calleda closure or lambda. Blocksareparticularly

    useful as callbacks or in places where you need a way of easily combining both the code to be executed and

    the associated data.

    In iOS, blocks are commonly used in the following scenarios:

    As a replacement for delegates and delegate methods

    As a replacement for callback functions To implement completion handlers for one-time operations

    To facilitate performing a task on all the items in a collection

    Together with dispatch queues, to perform asynchronous tasks

    For an introduction to block objects and their uses, see A Short Practical Guide to Blocks. For more information

    about blocks, see Blocks Programming Topics.

    Grand Central Dispatch

    Introduced in iOS 4.0, Grand Central Dispatch (GCD) is a BSD-level technology that you use to manage the

    execution of tasks in your application. GCD combines an asynchronous programming model with a highly

    optimized core to provide a convenient (and more efficient) alternative to threading. GCD also provides

    convenient alternatives for many types of low-level tasks, such as reading and writing file descriptors,

    implementing timers, and monitoring signals and process events.

    For more information about how to use GCD in your applications, see Concurrency Programming Guide. For

    information about specific GCD functions, see Grand Central Dispatch (GCD) Reference.

    High-Level Features 352010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 4

    Core Services Layer

  • 8/7/2019 iPhoneOSTechOverview

    36/64

    In-App Purchase

    Introduced in iOS 3.0, in-app purchase gives you the ability to vend content and services from inside your

    application. This feature is implemented using the Store Kit framework, which provides the infrastructure

    needed to process financial transactions usingthe users iTunes account. Your application handles the overall

    user experience and the presentation of the content or services available for purchase.

    For more information about supporting in-apppurchase, see In App Purchase Programming Guide. For additional

    information about the Store Kit framework, see Store Kit Framework (page 40).

    SQLite

    The SQLite library lets you embed a lightweight SQL database into your application without running aseparate remote database server process. From your application, you can create local database files and

    manage the tables and records in those files. The library is designed for general-purpose use but is still

    optimized to provide fast access to database records.

    The header file for accessing the SQLite library is located in /usr/include/sqlite3.h, where

    is the path to the target SDK in your Xcode installation directory. For more information about

    using SQLite, go to http://www.sqlite.org.

    XML Support

    The Foundation frameworkprovides theNSXMLParser class for retrieving elements from an XMLdocument.

    Additional support for manipulating XMLcontent is providedby the libXML2 library. This open source library

    lets you parse or write arbitrary XML data quickly and transform XML content to HTML.

    The header files for accessing the libXML2 library are located in the /usr/include/libxml2/

    directory, where is the path to the target SDK in your Xcode installation directory. For more

    information about using libXML2, go to http://xmlsoft.org/index.html.

    Core Services Frameworks

    The following sections describe the frameworks of the Core Services layer and the services they offer.

    Address Book Framework

    The Address Book framework (AddressBook.framework) provides programmatic access to the contacts

    stored on a users device. If your application uses contact information, you can use this framework to access

    and modify the records in theusers contacts database. For example, a chat program mightusethis framework

    to retrieve the list of possible contacts with which to initiate a chat session and display those contacts in a

    custom view.

    For information about the functions in the Address Book framework, see Address Book Framework Reference

    for iOS.

    36 Core Services Frameworks2010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 4

    Core Services Layer

    http://www.sqlite.org/http://xmlsoft.org/index.htmlhttp://xmlsoft.org/index.htmlhttp://www.sqlite.org/
  • 8/7/2019 iPhoneOSTechOverview

    37/64

    CFNetwork Framework

    The CFNetwork framework (CFNetwork.framework) is a set of high-performance C-based interfaces that

    use object-oriented abstractions for working with network protocols. These abstractions give you detailed

    control over the protocol stack and make it easy to use lower-level constructs such as BSD sockets. You can

    use this framework to simplify tasks such as communicating with FTP and HTTP servers or resolving DNShosts. With the CFNetwork framework, you can:

    Use BSD sockets

    Create encrypted connections using SSL or TLS

    Resolve DNS hosts

    Work with HTTP servers, authenticating HTTP servers, and HTTPS servers

    Work with FTP servers

    Publish, resolve, and browse Bonjour servicesCFNetwork is based, both physically and theoretically, on BSD sockets. For information on how to use

    CFNetwork, see CFNetwork Programming Guide and CFNetwork Framework Reference.

    Core Data Framework

    Introduced in iOS 3.0, the Core Data framework (CoreData.framework) is a technology for managing the

    data model of a Model-View-Controller application. Core Data is intended for use in applications in which

    the data model is already highly structured. Instead of defining data structures programmatically, you use

    the graphical tools in Xcode to build a schema representing your data model. At runtime, instances of your

    data-model entities are created, managed, and made available through the Core Data framework.

    By managing your applications data model for you, Core Data significantly reduces the amount of code you

    have to write for your application. Core Data also provides the following features:

    Storage of object data in a SQLite database for optimal performance

    A NSFetchedResultsController class to manage results for table views

    Management of undo/redo beyond basic text editing

    Support for the validation of property values

    Support for propagatingchanges and ensuring thatthe relationships betweenobjects remain consistent

    Support for grouping, filtering, and organizing data in memory

    If you are starting to developa new application or areplanninga significant update to an existingapplication,

    you should consider using Core Data. For an example of how to use Core Data in an iOS application, see Core

    Data Tutorial for iOS. For more information about the classes of the Core Data framework, see Core Data

    Framework Reference.

    Core Services Frameworks 372010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 4

    Core Services Layer

  • 8/7/2019 iPhoneOSTechOverview

    38/64

    Core Foundation Framework

    The Core Foundation framework (CoreFoundation.framework) is a set of C-based interfaces that provide

    basic data management and service features for iOS applications. This framework includes support for the

    following:

    Collection data types (arrays, sets, and so on)

    Bundles

    String management

    Date and time management

    Raw data block management

    Preferences management

    URL and stream manipulation

    Threads and run loops

    Port and socket communication

    The Core Foundation framework is closely related to the Foundation framework, which provides Objective-C

    interfaces for the same basic features. When you need to mix Foundation objects andCore Foundation types,

    you cantake advantage of thetoll-free bridging that exists betweenthe two frameworks. Toll-free bridgingmeans that you can use some Core Foundation and Foundation types interchangeably in the methods and

    functions of either framework. This support is available for many of the data types, including the collection

    and string data types. The class and type descriptions for each framework state whether an object is toll-free

    bridged and, if so, what object it is connected to.

    For more information about this framework, see Core Foundation Framework Reference.

    Core Location Framework

    The Core Location framework (CoreLocation.framework) provides location and heading information to

    applications. For location information, the framework uses the onboard GPS, cell, or Wi-Fi radios to find the

    users current longitude and latitude. You can incorporate this technology into your own applications to

    provide position-based information to the user. For example, you might have a service that searches for

    nearby restaurants, shops, or facilities, and base that search on the users current location.

    In iOS 3.0, support was added for accessing compass-based heading information on iOS-based devices that

    include a magnetometer.

    In iOS 4.0, support was introduced for a low-power location-monitoring service that uses cellular towers to

    track changes in the users location.

    For information about how to use Core Location to gather location and heading information, see Location

    Awareness Programming Guide.

    38 Core Services Frameworks2010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 4

    Core Services Layer

  • 8/7/2019 iPhoneOSTechOverview

    39/64

    Core Media Framework

    Introduced in iOS 4.0, the Core Media framework (CoreMedia.framework) provides the low-level media

    types used by the AV Foundation framework. Most applications never need to use this framework, but it is

    provided for those few developers who need more precise control over the creation and presentation of

    audio and video content.

    For more information about the functions and data types of this framework, see Core Media Framework

    Reference.

    Core Telephony Framework

    Introduced in iOS 4.0, the Core Telephony framework (CoreTelephony.framework) provides interfaces for

    interacting with phone-based information on devices that have a cellular radio. Applications can use this

    framework to get information about a users cellular service provider. Applications interested in cellular call

    events (such as VoIP applications) can also be notified when those events occur.

    For more information about using the classes and methods of this framework, see Core Telephony Framework

    Reference.

    Event Kit Framework

    Introduced in iOS 4.0, the Event Kit framework (EventKit.framework) provides an interface for accessing

    calendar events on a users device. You can use this framework to get existing events and add new events

    to the users calendar. Calendar events can include alarms that you can configure with rules for when they

    should be delivered.

    For more information about the classes and methods of this framework, see Event Kit Framework Reference.

    See also Event Kit UI Framework (page 23).

    Foundation Framework

    TheFoundation framework (Foundation.framework) provides Objective-Cwrappers to many of thefeatures

    found in the Core Foundation framework, which is described in Core Foundation Framework (page 38).

    The Foundation framework provides support for the following features:

    Collection data types (arrays, sets, and so on)

    Bundles

    String management

    Date and time management

    Raw data block management

    Preferences management

    URL and stream manipulation

    Core Services Frameworks 392010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 4

    Core Services Layer

  • 8/7/2019 iPhoneOSTechOverview

    40/64

    Threads and run loops

    Bonjour

    Communication port management

    Internationalization Regular expression matching

    Cache support

    For information about the classes of the Foundation framework, see Foundation Framework Reference.

    Mobile Core Services Framework

    Introduced in iOS3.0, theMobile Core Services framework (MobileCoreServices.framework) defines the

    low-level types used in Uniform Type Identifiers (UTIs).

    For more information about the types defined by this framework, see Uniform Type Identifiers Reference.

    Quick Look Framework

    Introduced in iOS 4.0, the Quick Look framework (QuickLook.framework) provides a direct interface for

    previewing the contents of files your application does not support directly. This framework is intended

    primarily forapplications that download files from thenetwork or that otherwise work withfiles fromunknown

    sources. After obtaining the file, you use the view controller provided by this framework to display the

    contents of that file directly in your user interface.

    For more information about the classes andmethods of this framework, see Quick Look Framework Reference.

    Store Kit Framework

    Introduced in iOS 3.0, the Store Kit framework (StoreKit.framework) provides support for the purchasing

    of content and services from within your iOS applications. For example, you could use this feature to allow

    the user to unlock additional application features. Or if you are a game developer, you could use it to offer

    additional game levels. In both cases, theStore Kit frameworkhandles the financialaspects of thetransaction,

    processing payment requests through the users iTunes Store account and providing your application with

    information about the purchase.

    The Store Kit focuses on the financial aspects of a transaction, ensuring that transactions occur securely and

    correctly. Your application handles the other aspects of the transaction, including the presentation of a

    purchasing interface and the downloading (or unlocking) of the appropriate content. This division of labor

    gives you control over the user experience for purchasing content. You decide what kind of purchasing

    interface you want to present to the user and when to do so. You also decide on the delivery mechanism

    that works best for your application.

    For information about how to use the Store Kit framework, see In App Purchase Programming Guide and Store

    Kit Framework Reference.

    40 Core Services Frameworks2010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 4

    Core Services Layer

  • 8/7/2019 iPhoneOSTechOverview

    41/64

    System Configuration Framework

    The System Configuration framework (SystemConfiguration.framework) provides the reachability

    interfaces, whichyou canuseto determinethe network configuration of a device. You canuse this framework

    to determine whether a Wi-Fi or cellular connection is in use and whether a particular host server can be

    accessed.

    For more information about the interfaces of this framework, see System Configuration Framework Reference.

    For an example of how to use this framework to obtain network information, see the Reachabilitysample

    code project.

    Core Services Frameworks 412010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 4

    Core Services Layer

  • 8/7/2019 iPhoneOSTechOverview

    42/64

    42 Core Services Frameworks2010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 4

    Core Services Layer

  • 8/7/2019 iPhoneOSTechOverview

    43/64

    The Core OS layer contains the low-level features that most other technologies are built upon. Even if you

    do not use these technologies directly in your applications, they are most likely being used by other

    frameworks. And in situations where you need to explicitly deal with security or communicating with an

    external hardware accessory, you do so using the frameworks in this layer.

    Accelerate Framework

    Introduced in iOS4.0, theAccelerate framework (Accelerate.framework) contains interfaces forperforming

    math, big-number, and DSP calculations, among others. The advantage of using this framework over writingyour ownversions of these interfaces is that they areoptimizedfor allof thehardware configurationspresent

    in iOS-based devices. Therefore, you can write your code once and be assured that it runs efficiently on all

    devices.

    For more information about the functions of the Accelerate framework, see Accelerate Framework Reference.

    External Accessory Framework

    Introduced in iOS 3.0, the External Accessory framework (ExternalAccessory.framework) provides

    support for communicating with hardware accessories attached to an iOS-based device. Accessories can beconnectedthrough the30-pindock connectorof a deviceor wirelessly using Bluetooth. TheExternal Accessory

    framework provides a way for you to get information about each available accessory and to initiate

    communications sessions. After that, you are free to manipulate the accessory directly using any commands

    it supports.

    For more information about how to use this framework, see External Accessory Programming Topics. For

    information about developing accessories for iOS-based devices, go to http://developer.apple.com.

    Security Framework

    In addition to its built-in security features, iOS also provides an explicit Security framework

    (Security.framework) that you can use to guarantee the security of the data your application manages.

    This framework provides interfaces for managing certificates, public and private keys, and trust policies. It

    supports the generation of cryptographically secure pseudorandom numbers. It also supports the storage

    of certificates and cryptographic keys in the keychain, which is a secure repository for sensitive user data.

    The Common Crypto library provides additional support for symmetric encryption, HMAC, and digests. The

    digests feature provides functions that are essentially compatible with those in the OpenSSL library, which

    is not available in iOS.

    Accelerate Framework 432010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 5

    Core OS Layer

    http://developer.apple.com/http://developer.apple.com/
  • 8/7/2019 iPhoneOSTechOverview

    44/64

    In iOS 3.0 and later, it is possible for you to share keychain items among multiple applications you create.

    Sharing items makes it easier for applications in the same suite to interoperate more smoothly. For example,

    you could use this feature to share user passwords or other elements that might otherwise require you to

    prompt the user from each application separately. To share data between applications, you must configure

    the Xcode project of each application with the proper entitlements.

    For information about the functions and features associated with the Security framework, see Security

    Framework Reference. For information about how to access the keychain, see Keychain Services Programming

    Guide. For information about setting up entitlements in your Xcode projects, see iOS Development Guide. For

    information about the entitlements you can configure, see the description for the SecItemAdd function in

    Keychain Services Reference.

    System

    The systemlevel encompasses the kernel environment, drivers, and low-level UNIXinterfaces of the operating

    system. The kernel itself is based on Mach and is responsible for every aspect of the operating system. It

    manages the virtual memory system, threads, file system, network, and interprocess communication. The

    drivers at this layer also provide the interface between the available hardware and system frameworks. For

    security purposes, access to the kernel and drivers is restricted to a limited set of system frameworks and

    applications.

    iOS provides a setof interfaces for accessing many low-level features of the operating system. Your application

    accesses these features through the LibSystem library. The interfaces are C-based and provide support for

    the following:

    Threading (POSIX threads)

    Networking (BSD sockets)

    File-system access Standard I/O

    Bonjour and DNS services

    Locale information

    Memory allocation

    Math computations

    Header files for many Core OS technologies are located in the /usr/include/ directory, where

    is the path to the target SDK in your Xcode installation directory. For information about thefunctions associated with these technologies, see iOS Manual Pages.

    44 System2010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 5

    Core OS Layer

  • 8/7/2019 iPhoneOSTechOverview

    45/64

    If you are a Cocoa developer, many of the frameworks available in iOS should already seem familiar to you.

    Thebasic technology stack in iOS is identical in many respects to theonein MacOS X. Despitethesimilarities,

    however, the frameworks in iOS are not exactly the same as their MacOS X counterparts. This chapter describes

    the differences you may encounter as you create iOS applications and explains how you can adjust to some

    of the more significant differences.

    Note: This chapter is intended for developers who are already familiar with Cocoa terminology andprogramming techniques. If you want to learn more about the basic design patterns used for Cocoa

    applications (and iOS applications), see Cocoa Fundamentals Guide.

    General Migration Notes

    If your Cocoa application is already factored using the Model-View-Controller design pattern, it should be

    relatively easy to migrate key portions of your application to iOS.

    Migrating Your Data Model

    Cocoa applicationswhosedata model is based on classes in theFoundationand Core Foundationframeworks

    can be brought over to iOS with little or no modification. Both frameworks are supported in iOS and arevirtually identical to their Mac OS X counterparts. Most of the differences that do exist are relatively minor

    or are related to features that would need to be removed in the iOS version of your application anyway. For

    example, iOS applications do not support AppleScript. For a detailed list of differences, see Foundation

    Framework Differences (page 49).

    If your Cocoa application is built on top of Core Data, you can migrate that data model to an iOS application

    in iOS 3.0 and later; Core Data is not supported in earlier versions of iOS. The Core Data framework in iOS

    supports binary and SQLite data stores (not XML data stores) and supports migration from existing Cocoa

    applications. For thesupported data stores, you cancopy your Core Data resource files to your iOSapplication

    project and use them as is. For information on how to use Core Data in your Xcode projects, see Core Data

    Programming Guide.

    If your Cocoa application displays lots of data on the screen, you might want to simplify your data modelwhen migrating it to iOS. Although you can create rich applications with lots of data in iOS, keep in mind

    that doing so maynot serve your usersneeds.Mobileusers typicallywant only themost important information,

    in the least amount of time. Providing the user with too much data all at once can be impractical because

    of the more limited screen space, and it could also slow down your application because of the extra work

    required to load that data. Refactoring your Cocoa applications data structures might be worthwhile if it

    provides better performance and a better user experience in iOS.

    General Migration Notes 452010-11-15 | 2010 Apple Inc. All Rights Reserved.

    CHAPTER 6

    Migrating from Cocoa

  • 8/7/2019 iPhoneOSTechOverview

    46/64

    Migrating Your User Interface

    The structure and implementationof theuser interface in iOSis very different from that of Cocoa applications.

    Take, for example, the obje