Related Titles
- Full Description
-
It seems as if everyone is writing applications for Apples iPhone and iPad, but how do they all do it? Its best to learn Objective-C, the native language of both the iOS and Mac OS X, but where to begin? Right here, even if youve never programmed before!
Objective-C for Absolute Beginners will teach you how to write software for your Mac, iPhone, or iPad using Objective-C, an elegant and powerful language with a rich set of developer tools. Using a hands-on approach, youll learn to think in programming terms, how to use Objective-C to build program logic, and how to write your own applications and apps.
With over 50 collective years in software development and based on an approach pioneered at Carnegie Mellon University, the authors have developed a remarkably effective approach to learning Objective-C. Since the introduction of Apples iPhone, the authors have taught hundreds of absolute beginners how to develop Mac, iPhone,and iPad apps, including many that became popular apps in the iTunes App Store.
What youll learn
- The fundamentals of computer programming: how to understand variables,design data structures, and work with file systems
- The logic of object-oriented programming: how to use Classes, Objects, and Methods
- The flexibility of Apple's developer tools: how to install Xcode and write programs in Objective-C
- The power of Cocoa and Cocoa touch: how to make Mac OS X applications or iOS apps that do cool stuff
Who this book is for
Everyone! This book is for anyone who wants to learn to develop applications for the Mac or apps for the iPhone and iPad using the Objective-C programming language. No previous programming experience is necessary.
- Table of Contents
-
Table of Contents
- Becoming a Great iPhone/iPad or Mac Programmer
- Programming Basics
- Its All About the Data
- Making Decisions About...and Planning Program Flow
- Object Oriented Programming with Objective-C
- Introducing Objective-C and Xcode
- Objective-C Classes, Objects, and Methods
- Programming Basics in Objective-C
- Comparing Data
- Creating User Interfaces with Interface Builder
- Memory, Addresses, and Pointers
- Debugging Programs with Xcode
- Storing Information
- Protocols and Delegates
- Source Code/Downloads
- Errata
-
If you think that you've found an error in this book, please let us know about it. You will find any confirmed erratum below, so you can check if your concern has already been addressed.
On page 41:Original : For example, the hexadecimal number 2AF3 is equal, in decimal to (2 x 16³) + (10 x 162) + (15 x 161) + (3 x 160)
In the last three expressions of the calculus, the numbers should be multiplicated by powers of 16.
Correct :
decimal to (2 x 16³) + (10 x 16²) + (15 x 16¹) + (3 x 16⁰)
On page 99:
On page 99 it says "The third line:
if (printf(“Hello World”) != -1)"
but the third line is "if (printf(“Hello World”) == 0)"
On page 142 & 143:Error in Setter Method -
current reads - >
- (void)setTitle(NSString* newString);
Should be ->
- (void) setTitle: (NSString*)newString;
On page 167:
In code review and full code example
line
NSDate *saleDate = [NSDate dateWithString:@"2010-0 9–04 04:00:00 -0700"];
date format is (YYYY-MM-DD) you made a mistake when you put "-0" at end on the year
It should read:
NSDate *saleDate = [NSDate dateWithString:@"2010-9–04 04:00:00 -0700"];
On page 171:
line:
NSMutableArray *bookList = [NSArray arrayWithObjects:@"Moby Dick", @"Frankenstein",
@"Tom Sawyer”, nil];
should be:
NSMutableArray *bookList = [NSMutableArray arrayWithObjects:@"Moby Dick", @"Frankenstein",
@"Tom Sawyer”, nil];
On page 172:
an NSMutableDictionary
code example:
NSMutableDictionary *book;
book = [NSDictionary...
should be:
NSMutableDictionary *book;
book = [NSMutableDictionary...
On page 186:
Listing 8–4. Creating an NSArray from an existing NSSet.
1 NSSet *mySet = [NSSet setWithObjects:@"One", @"Two", @"Three", nil];
2 NSArray *myArray = [NSSet allObjects];
3
4 NSLog(@"%@", [myArray objectAtIndex:1);
Line 2 should be
NSArray *myArray = [mySet allObjects];
On page 204:
On page 204, the author specifically requests that the user modify the "main.c" file which does not exist within the project... It goes on throughout the Chapter referencing this file, but the file simply isn't there.








