vote up 17 vote down star
31

What are the recommended online or offline resources for Objective-C and Cocoa programming?

My online resources:

My offline resources:

  • None, I have no books on my shelf

I need some help finding a good book, any suggestions?

flag

11 Answers

vote up 24 vote down check

Alright, let's start with the obvious Apple resources:

Mac Dev Center

Introduction to The Objective-C 2.0 Programming Language

Introduction to Cocoa Application Tutorial

For books, these two are generally considered must-haves:

Programming in Objective-C by Stephen Kochan

Cocoa Programming for Mac OS X by Aaron Hillegass

Programming in Objective-C is due for an update in November 2008 to cover Objective-C 2.0 topics. Cocoa Programming for Mac OS X was updated fairly recently.

link|flag
vote up 7 vote down

@adhip Gupta:

I did see the Understanding reference counting with Cocoa / Objective C. Matt Dillard gives an excellent answer.

I did not see Howto articles for iphone development. I never thought of searching for iPhone. Well, not really interested in programming for the iPhone. Someone should edit that tags for that question to include objectivec. I do not have the ability yet.

Resources from that question:

link|flag
vote up 3 vote down

Cocoa Programming for Mac OS X by Aaron Hillegass is a great introduction for someone who's already familiar with C. Once you know the basics of how everything fits together, I recommend reading Apple's Cocoa-Dev mailing list and Omni's MacOSX-dev mailing list. Cocoabuilder is useful for searching these lists to answer questions, but I recommend actually reading the list archives sequentially. In the long run that will save you time, as you'll be aware of the different areas of functionality and potential gotchas before you go down the wrong path or run into trouble.

Language references are also useful. For Objective-C, I like the PDF of Apple's The Objective-C 2.0 Programming Language. A great book on C is C: A Reference Manual.

link|flag
vote up 2 vote down

Get one good book, learn some of the basics, then Google as needed when you have questions for your project. You'll eventually find the online resources that are most helpful for your needs - remember Cocoa and Objective-C cover a great many areas and different sites often have a specific focus.

If you're working on something for Mac/iPhone be sure to download relevant sample code from Apples site. Many samples that may seem unrelated will often provide valuable information about different areas. If you have XCode the documentation should be integrated.

I'd strongly recommend Cocoa Programming For Mac OSX. This is a great book that happens to also be highly-readable. It has tips for configuring XCode which being new to the IDE I found very helpful.

link|flag
vote up 2 vote down

Don't forget the CocoaDev wiki. Pretty much any API/object/etc. has its own article with often useful advice on good and bad practices, etc.

link|flag
vote up 1 vote down

Does this help? Or, this?

@Tao: I know. I never would have searched for iPhone too. Just that I remembered reading that thread! :) And, edit tags requires 1000 points I believe. So, I too am far far away! :)

link|flag
vote up 1 vote down

As others have mentioned Cocoa Programming for Mac OSX is a very good choice for a book. Make sure that you get the third edition if you're using Leopard and Xcode 3.0 or later. There were some changes to interface builder that can be a bit confusing if it is your first time through and you're using the older book.

The third edition also accounts for some useful features from Objective-C 2.0

link|flag
vote up 1 vote down

Also, don't forget to check out the mailing list at Cocoabuilder. It's definitely one of the first places I check for answers.

There is also a screencast tutorial website that's been around for awhile; Cocoacast. Most of the content follows the 2nd Ed. of Cocoa Programming for Mac OS X, but they have some newer screencasts going over some of the new features and differences since the release of Leopard. Hopefully they'll start posting screencasts again regularly.

link|flag
vote up 1 vote down

All the "no brainer" links and books have been presented and I strongly recommend them as well. One thing that really helped me (and motivated me) to get started is the online sessions from WWDC (available on iTunes). It is not free if you are not registered (and a paying dev) but it is well worth the money IMO if you are serious about learning Obj-C/Cocoa.

link|flag
vote up 1 vote down

Aaron Hillegass's book Cocoa Programming for Mac OS X (Current version is the third addition) is more than enough for someone who has a passing understanding of C.

This book reminds me of the original K&R book in that it starts simply and then does an excellent job of building on previous chapters.

Another thing to bare in mind is that the Objective-C 2.0 reference from apple is an excellent reference but remember that there are quire a few limitations when it comes to its use against the iPhone SDK.

link|flag
vote up 1 vote down

OO Philosophy and Design Patterns

The Objective-C 2.0 Programming Language is certainly a good reference, however by way of introduction you should also read Object-Oriented Programming with Objective-C. This is likely to be useful even if you have used other object-oriented environments -- Cocoa's perspective on OOP is sometimes rather different from what you may be used to.

In addition, you should also read Cocoa Fundamentals Guide -- in particular the chapter on design patterns.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.