vote up 4 vote down star
10

I'm a .NET programmer (C#) and want to learn to develop for the Mac. I'm not fluent in C/C++ but know enough to get my hands dirty, so I figure Objective-C shouldn't be too difficult.

Does anyone have any good online resources they'd recommend for learning Objective-C?

flag

75% accept rate
Regarding “C/C++”: Some parts of C++ that came from C are actually different from how standard C has them. Objective-C is different: it sits on top of standard C without modifying it. If you only know C++ (and, in your case, C#), it's worth learning straight C first. – Peter Hosey Jan 27 at 5:01

6 Answers

vote up 9 vote down check

Apple's Developer web site has some good Objective-C resources - primarily The Objective-C 2.0 Programming Language, which gives an overview of the entire language. As long as you are fluent reading C, that should probably get you started.

If you want to learn Mac programming, then I would recommend picking up Cocoa Programming for Mac OS X. That's what I used and it was a great intro (much better than Apple's docs when starting out, IMO). Make sure that you get the 3rd edition, since Apple's tools have changed dramatically since the 2nd edition was released.

link|flag
vote up 2 vote down

The Apple documentation is a great place to start.

ObjC.pdf is wonderful. Read it straight through. Save it to your desktop and flop it open whenever you have a language question. Do the same with Memory Management Programming Guide. There are many more specific documents on Apple's site, depending on what you want to do.

This Cocoa Literature List is another great aggregation of Cocoa articles around the web, organized by task/subject.

link|flag
+1 for HyperJeff's Cocoa Literature list. – Quinn Taylor Sep 3 at 18:16
vote up 1 vote down

Oh boy are you about to be surprised. I recently took a run at ObjC and was shocked at how different it was from what I'd seen before. It's not hard exactly--just different.

If you're doing iPhone apps and are already familiar with MVC, then the transition should be smoother.

Some resources:

  • Pragmatic Programmers - not very advanced but if you want a decent overview with examples, buy a couple videos
  • Youtube. For iPhone development, Youtube is full of examples
  • Apple's Dev site
  • Google
link|flag
vote up 0 vote down

There are a few blogs and podcasts that are great places to start. Tim Isted has written some tutorials that will get you a long way into developing a Cocoa application using Core Data (http://www.timisted.net/blog/archive/category/programming/). Following that searching the archives of CocoaWithLove (http://cocoawithlove.com/) is well worth the effort.

Core Intution and CocoaFusion are fairly regular podcasts available for free covering cocoa development with CocoaFusion being more technical and Core Intuition being more general.

Finally I'd have a look at the Mac Developer Network (www.macdevnet.com). There are a good few free things on the site including links to blogs, podcasts, cocoa related news and some free podcasts. Upgrading to a paid membership is well worth the effort though because the screen casts and the Late Night Cocoa podcast are exceptional and you can regularly here from some of the best cocoa developers.

link|flag
vote up 0 vote down

Cocoa Dev Central has some excellent tutorials. I'd start with Learn Objective-C and Learn Cocoa.

link|flag
vote up 0 vote down

In case you don't have a Mac, you can use GNUstep to get a free implementation of the Objective-C development environment in Windows or Linux. Of course, it doesn't have everything that Cocoa does. Still, it's a good way to get your feet wet in Objective-C for those who lack a Mac with the full Cocoa API.

link|flag
Very cool. Thanks for the link! – Kevin Babcock Jan 27 at 4:02

Your Answer

Get an OpenID
or

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