Related Titles
- Full Description
-
With the Mac App Store launch in early 2011, a new age in Mac development began. Look for many of the cool apps for iPhone and iPad coming to an iMac or MacBook Pro near you!
Beginning OS X Lion Apps Development explains how to develop OS X Lion-based apps and publish them in the Mac App Store. It begins with the basics of Objective-C and Cocoa, and then moves through all the topics necessary to build and publish your first successful Mac apps!
- Get started with Objective-C and Xcode
- Build your first complete apps that integrate well with Mac OS X
- Publish your apps on the Mac App Store
If you're new to Mac or new to iPhone or iPad apps development, and looking to develop apps for the Macbook Pro or Mac desktop, this book is for you!
What youll learn
- How to use Apples development tools
- How to build user interfaces and create user experiences (UX)
- How to respond to user input
- How to integrate your apps into the Mac ecosystem
- How to store and retrieve data
- How to publish your apps to the new Mac App Store
Who this book is for
This book is for those new to Mac or for iPhone or iPad apps developers who want to develop apps for the MacBook Pro or Mac desktop.
- Table of Contents
-
Table of Contents
- Building a Graphiing Calculator
- Laying Out the User Interface
- Handling User Input
- Pimp My UI
- Storing and Retrieving Data
- Using Core Data
- Integrating Graphique into the Mac OS X Desktop
- Creating Help
- Printing
- 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 52:Listing 2-3 adds an additional closing bracket which should be removed:
[self.verticalSplitView replaceSubview:[[self.verticalSplitView subviews] objectAtIndex:1] with:equationEntryViewController.view]];
Should be:
[self.verticalSplitView replaceSubview:[[self.verticalSplitView subviews] objectAtIndex:1] with:equationEntryViewController.view];
On page 90:Code on page generates an error for the NSSplitView. Corrected by adding the following lines while setting the width of the split view:
equationEntry.size.height = size.height;
recentlyUsed.size.height = size.height;
Thanks,
db
On page 108:
for loop should be x<=50, not x=50
On page 109:
Listing 3-20 doesn't show how to declare the protocol implements NSTableViewDataSource protocol
On page 162:Line in code:
i += (trig.length] - 1);
Needs close bracket removed



