I’m currently reading Aaron Hillegass’ book “Cocoa Programming for Mac OS X” as it is highly recommended throughout the community. I’m wondering if there’s an extreme difference between “Cocoa Programming” and iPhone development. I’m more interested in iPhone development, but I figured iPhone development would be easier to pick up if I was comfortable with Cocoa before moving on.
Share
iPhone programming is a form of Cocoa (technically “Cocoa Touch”). It shares almost all the same programming idioms, and there’s a huge overlap in the frameworks.
Hillegass’ book is a great starting point for either. After about chapter 7 in Hillegass, you’ll start getting into more “Mac” topics like document window management etc. None of this is bad to understand, but that’s where it begins to differ in the details, and you’ll find that it won’t translate quite so directly.
The patterns he teaches you to think in will be useful in all cases. But the actual classes and objects you use for the Mac stuff don’t all have equivalences in the iPhone world. On iOS, the view management (UIView) is quite different from Mac’s NSView stuff. It’s actually simpler and easier to understand on the iPhone, I found.
Hillegass has a new iPhone-specific book out. I haven’t browsed through it yet.