Obj-C Book?

Associate
Joined
9 Jun 2009
Posts
1,397
Location
Suffolk
Wondering if anyone could recommend a good obj-c/cocoa book which teaches the latest standard (don't know if it has changed in ios7...)? Not too worried about one that includes the GUI aspects to ios programming, just more interested in the nuts and bolts of the obj-c language.

I'm a proficient programmer in other languages, but oop has eluded me throughout my scientific programming days and I'm trying to rectify that.

TIA
 

GeX

GeX

Soldato
Joined
17 Dec 2002
Posts
6,895
Location
Manchester
Programming in Objective-C (Developer's Library) by Stephen G. Kochan

I think 5th edition is the latest, updated for iOS6 - but considering you're just after nuts and bolts, then I think you're fine with that as a starting point (I have 4th edition, and it includes the big change in iOS5 (ARC) - so am fine with that).
 
Associate
OP
Joined
9 Jun 2009
Posts
1,397
Location
Suffolk
Programming in Objective-C (Developer's Library) by Stephen G. Kochan

I think 5th edition is the latest, updated for iOS6 - but considering you're just after nuts and bolts, then I think you're fine with that as a starting point (I have 4th edition, and it includes the big change in iOS5 (ARC) - so am fine with that).

Ah thanks, that was the one I was looking at getting. Quick question, whats ARC?
 
Associate
Joined
16 Oct 2006
Posts
560
Location
U.K.
Ah thanks, that was the one I was looking at getting. Quick question, whats ARC?

Automatic Reference Counting. It's a memory management feature where the compiler automatically does release/retain's for you, to help control object deallocation.

Kochan's book is a really good choice, I'd start there. Stanford also have a video lecture series on iTunes U for free, which is pretty good.
 
Soldato
Joined
8 May 2011
Posts
4,939
Location
HQ
I'm halfway through Programming in Obj-C 5th and it's a good book. The Apple docs are also useful and can be downloaded in PDF:
The Objective-C Programming Language
Cocoa Fundamentals Guide
Xcode Guide

And the rest of the Developers Library etc
 
Back
Top Bottom