Home > Store

Sams Teach Yourself Objective-C in 24 Hours

Register your product to gain access to bonus material or receive a coupon.

Sams Teach Yourself Objective-C in 24 Hours

Book

  • Sorry, this book is no longer in print.
Not for Sale

About

Features

  • All-new: designed from the ground up to reflect Xcode 4 and the new OS X Lion APIs
  • Easy, start-to-finish coverage from top Apple developer Jesse Feiler: teaches key concepts with fully-documented Objective-C code
  • Step-by-step instructions walk through turning Xcode templates into production-quality code
  • Packed with examples, quizzes, exercises, tips and shortcuts

Description

  • Copyright 2012
  • Edition: 1st
  • Book
  • ISBN-10: 0-672-33589-1
  • ISBN-13: 978-0-672-33589-1

In just 24 sessions of one hour or less, you can master the Objective-C language, and start using it to write powerful native applications for both Macs and iOS devices! Using this book’s straightforward, step-by-step approach, you’ll get comfortable with Objective-C’s unique capabilities… make the most of its powerful implementation of objects and messaging…work effectively with design patterns, collections, blocks, threading, and a whole lot more. Every lesson builds on what you’ve already learned, giving you a rock-solid foundation for real-world success!

Step-by-Step Instructions carefully walk you through the most common Objective-C development tasks.

Quizzes and Exercises at the end of each chapter help you test your knowledge.

By the Way notes present information related to the discussion.

Did You Know? tips offer advice or show you easier ways to perform tasks.

Watch Out! cautions alert you to possible problems and give you advice on how to avoid them.

Printed in full color—figures and code appear as they do in Xcode

  • Use Xcode to write Objective-C software more quickly and efficiently
  • Master Objective-C’s object-oriented features and techniques
  • Efficiently organize program files and projects
  • Make the most of Objective-C’s powerful messaging capabilities
  • Declare classes, instance variables, properties, methods, and actions
  • Leverage building block patterns to write more powerful code
  • Work with mutable and immutable data types
  • Organize data with collections, including dictionaries and sets
  • Manage memory the modern way, with Automatic Reference Counting (ARC)
  • Expand and extend classes with protocols, delegates, categories, and extensions
  • Apply recent language enhancements such as Associative References and Fast Enumeration
  • Create and work with portable, anonymous code blocks
  • Manage queues and threading with Grand Central Dispatch

Sample Content

Online Sample Chapter

Using Object-Oriented Features in Objective-C

Table of Contents

Introduction    1

Who Should Read This Book    1

What This Book Covers    1

Downloading the Example Files    2

How This Book Is Organized    2

Part I: Getting Started with Objective-C

HOUR 1: Overview of Objective-C    7

Introducing Objective-C    7

Enrolling as an Apple Developer    8

Setting Up the Development Environment    11

Summary    19

Q&A    20

Workshop    20

HOUR 2: Object-Oriented Programming with Objective-C    23

Object-Oriented Programming in the Objective-C World    23

Creating C with Objects    26

Managing Inheritance in the Objective-C World    30

Summary    32

Q&A    32

Workshop    33

HOUR 3: Using Object-Oriented Features in Objective-C    35

Communicating to Methods with Messages    35

Allocating and Initializing Objects    39

Summary    40

Q&A    41

Workshop    41

HOUR 4: Organizing Projects with a Git Source Code Repository    43

Getting to Work with Xcode    43

Keeping Track of Your Source Code    47

Using a Remote Repository    62

Summary    66

Q&A    66

Workshop    66

HOUR 5: Using Compiler Directives    69

Exploring Your Project    69

Working with Compiler Directives    71

Using Objective-C Compiler Directives    77

Summary    78

Q&A    78

Workshop    78

Part II: Working with the Objective-C Basics

HOUR 6: Exploring Messaging and a Testbed App    81

Setting Up the Test App    81

Adding a Text Field and Connecting It to Your Code    85

Sending a Message to the Text Field    92

Reviewing the Message Syntax    94

Summary    95

Q&A    95

Workshop    95

HOUR 7: Declaring a Class in an Interface File    97

Letting Xcode Do the Work    97

Exploring Class Hierarchies    103

Declaring Classes    106

Summary    108

Q&A    108

Workshop    108

HOUR 8: Declaring Instance Variables in an Interface File    111

Declaring Instance Variables and Properties    111

Using the Class    111

Creating an Instance Variable for CurrencyConverter with id    114

Creating an Instance Variable for CurrencyConverter with the

Class Name    117

Creating an Instance Variable for CurrencyConverter with a

Superclass Name    119

Managing Instance Variable Scope    122

Summary    122

Q&A    123

Workshop    123

HOUR 9: Declaring Properties in an Interface File    125

Comparing Interface Variables and Properties    125

Using Declared Properties    130

Using Attributes    132

Using Other Attribute Decorators    135

Implementing Properties    135

Summary    136

Q&A    137

Workshop    137

HOUR 10: Declaring Methods in an Interface File    139

Working with Methods in a Class    139

Reviewing Method Syntax    140

Summary    145

Q&A    145

Workshop    146

HOUR 11: Declaring Actions in an Interface File    147

Introducing Actions    147

Comparing Actions in Mac OS X and iOS    158

Q&A    161

Workshop    161

HOUR 12: Routing Messages with Selectors    163

Getting Inside Objective-C Messages    163

Getting Inside the Objective-C Runtime    165

Working with SEL and @selector ()    166

Using performSelector    167

Using NSInvocation    170

Testing Whether an Instance Can Respond to a Selector    174

Summary    174

Q&A    175

Workshop    175

HOUR 13: Building on the Foundation    177

Exploring the Foundation Framework    177

Foundation Classes    178

Foundation Paradigms and Policies    180

Summary    185

Q&A    185

Workshop    185

HOUR 14: Defining a Class in an Implementation File    187

Working with a New Project    187

Creating a New App    191

Implementing a Method    194

Expanding the Class with init Methods    197

Summary    199

Q&A    200

Workshop    200

HOUR 15: Organizing Data with Collections    201

Collecting Objects    201

Getting Familiar with Property Lists    203

Comparing the Collection Classes    205

Creating a Collection    206

Enumerating a Collection    210

Testing Membership in a Collection    212

Accessing an Object in a Collection    213

Summary    213

Q&A    213

Workshop    214

HOUR 16: Managing Memory and Runtime Objects    215

Managing Objects in Memory    215

Managing Reference Counts Manually    217

Managing Reference Counts with ARC    220

Variable Qualifiers    222

Autoreleasing Variables    223

Summary    224

Q&A    224

Workshop    224

Part III: Expanding and Extending Classes

HOUR 17: Extending a Class with Protocols and Delegates    227

Exploring the Pros and Cons of Subclassing    227

Exploring Multiple Detail Views Sample Code    228

Looking Inside Protocols    235

Working with Delegates    235

Summary    240

Q&A    240

Workshop    240

HOUR 18: Extending a Class with Categories and Extensions    243

Comparing Categories and Protocols    243

Comparing Categories to Subclasses    244

Working with Categories    246

Using Class Extensions    249

Working with Informal Protocols    250

Summary    250

Q&A    250

Workshop    251

HOUR 19: Using Associative References and Fast Enumeration    253

Catching Up on Objective-C 2.0 Time-Saving Features    253

Extending Classes by Adding Instance Variables (Sort of)    254

Using Fast Enumeration    258

Summary    261

Q&A    261

Workshop    261

HOUR 20: Working with Blocks    263

Revisiting Blocks    263

Looking at Callbacks    264

Introducing Blocks    268

Exploring Blocks in Cocoa    270

Looking Deeper into Cocoa Blocks and Memory    273

Summary    273

Q&A    274

Workshop    274

Part IV: Beyond the Basics

HOUR 21: Handling Exceptions    275

Rethinking Exceptions and Errors    275

Introducing the Exception and Error Classes    276

Identifying an Exception    281

Throwing an Exception    282

Catching an Exception    283

Summary    283

Q&A    284

Workshop    284

HOUR 22: Grand Central Dispatch: Using Queues and Threading    285

Getting Started with Concurrency    285

Introducing Queues    288

Using Dispatch Queues    290

Summary    292

Q&A    293

Workshop    293

HOUR 23: Working with the Debugger    295

Logging Information    295

Using Console Logs    296

Using Smart Breakpoints    299

Summary    304

Q&A    304

Workshop    305

HOUR 24: Using Instruments for Analysis    307

Putting Instruments in Perspective    307

Looking at Instruments    309

Getting Started with Instruments    311

Connecting to the iOS Simulator    314

Summary    316

Q&A    316

Workshop    316

Part V: Appendixes

APPENDIX A: C Syntax Summary    319

Data Types    319

Control Structures    321

APPENDIX B: Apps, Packages, and Bundles    323

APPENDIX C: Archiving and Packaging Apps for Development and Testing    329

APPENDIX D: Introducing Xcode 4    333

Getting to Know Xcode    333

Goodbye “Hello, World”    334

Hello, App Development for Mac OS X and iOS    336

Getting Started with Xcode    338

Using the Navigator    341

Using Editors    351

Working with Assistant    355

Getting Help in an Editor Window    357

Using Utilities—Inspectors    357

Using Utilities—Libraries    360

Using the Text Editor    366

Using the Organizer Window    371

Index    375

Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020