Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

closed as not constructive by Bill the Lizard Dec 1 '11 at 11:42

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

12 Answers

up vote 117 down vote accepted

Apple's documentation is decent at best; I'd recommend a series of books to get you going. I've read loads of them and my recommendation (read in this order) would be:

Programming in Objective-C 2.0 by Stephen Kochan for the Objective-C foundation. Do you know Objective-C? Do you know any C? If the answer is no to either of these, then definitely start here. From what I remember it also comes with videos.

One of the Apress books for your foundation iOS SDK learning: Beginning iPhone Development: Exploring the iPhone SDK by Dave Mark and Jeff LaMarche ramps up very well for a beginner and covers most of what you'd need to know to make a complete application from design to delivery.

And finally The iPhone Developer's Cookbook by Erica Sadun for additional badassery. I learned more from Erica's book than any other source. If you only buy one book, BUY THIS ONE. It's awesome, provides insane code source, loads of workarounds and useful helper classes and hacks.

My favorite introduction websites are:

  • Theocacao (make sure you read the topics on memory management and how @property works behind the scenes)
  • CIMG. Loads of great topics and tips.
  • Ray Wenderlich's tutorials are excellent, especially if you plan to develop games for iOS.
  • Find the authors of these books on Twitter and follow them. Seriously, they post sample code, tips, and will help you directly. I've found it invaluable.
  • Open Radar. Developing for a recent release of iOS? You'll want to get to know this site to determine if issues you run into are known bugs.

Definitely check out Stanford's Video class on Itunes U. I watched those after my introduction to Objective-C/iPhone and wished I had that when I started.

Apple's developer forums seem to be a nice place to rant about how much the SDK is broken, but beyond that I have not found much use for it. Apple's documentation has very little sample code and their samples on the site are dated (and often straight broken).

At the end of the day, though, your best learning experience will be deciding to make an application and following through. You'll find how ridiculously hard some menial tasks are and how pleasingly easy other tasks are with the SDK. It's a up and down roller coaster no matter how much you know going in.

share|improve this answer
Beginning iPhone 3 Development gets buggy towards the end, both code samples and text. But still, it's very good. BTW: The link to the book is wrong. – Arne Evertsson Sep 7 '10 at 14:03
5  
Thanks for continuing to update this answer. Both it and the question are extremely helpful. – Danny Dec 11 '12 at 11:00
The tutorials on raywenderlich.com/tutorials is pretty good too. – Fogh Apr 29 at 21:44
Good call, @Fogh, I've added that link. – typeoneerror Apr 30 at 17:01

For an experienced developer, yes, Apple's official documentation is the way to go to double check some information. For someone new to iOS programming, no. The thing is, Apple's documentation is non-linear (like a website). When you are reading one article, it points to some ten others, so after a while you are lost and cannot know where to begin. Also, in most articles, it assumes some level of knowledge from the readers, which might not be correct. A book is always better to start learning from scratch.

Some of the books are quite good, like "iPhone in Action", "Headfirst iPhone development", etc., depending on your knowledge of Cocoa and your learning style. Then after you are comfortable with the basics, you can move on to studying Apple's sample code, iTunes U videos (which are good for theory, but code-level discussion is scarce), notable blogs like CocoaWithLove, Cocoa Is My Girlfriend, and Jeff Lamarche's blog.

share|improve this answer
+1 can't agree more with your opinion on Apple doc. It's not for beginner in most cases. – Philip007 Oct 5 '12 at 1:32
+1 for "When you are reading one article, it points to some ten others, so after a while you are lost and cannot know where to begin." – BlackFlam3 May 20 at 6:55

I am a big fan of the Head First Series, and they also have a book about iPhone Development: "Head First iPhone Development" from O'Reilly Media.

I find it easy and fun to read. For more deeper technical stuff, the Apple developer documentation is also really helpful. And there is a great podcast from Stanford University: http://deimos3.apple.com/WebObjects/Core.woa/Browse/itunes.stanford.edu.3124430053 and finally, the WWDC videos are also available as podcasts on the Apple developer website.

Have fun!

share|improve this answer

Apple's official documentation is the best way to go. Unlike other companies, Apple has pretty good technical writers. The risk of third-party resources is that you'll get misinformation or do things the wrong way.

share|improve this answer

Stack Overflow itself is an excellent training tool.

Just reading through a dozen or so questions everyday familiarizes you with the nomenclature and the general concepts. When you read about a class of framework you don't recognize, you can search the Apple Docs for it and get a little familiarity.

Information sticks to itself in your brain. The more information you already possess the easier it is to learn new stuff. Using Stack Overflow to pick up bits and pieces of iOS related information that may have nothing to do with your particular immediate focus will actually accelerate your learning of that focus.

More generally, I always recommend that people open an account at O'Reilly's Safari Books Online . For $10 a month you can get access to 5 complete books on iPhone programming. For $45 a month you can get unlimited access. Instead of having to choose one single "best" training resource, you can access dozens at once.

I currently have 32 different iPhone programming specific books on my shelf. When I need to understand something, I am not restricted to one author's mode of explanation of a particular subject. Instead, I can get dozens of different explanations from different perspectives of the same subject. That is very useful.

Considering that your average hardcopy programming book cost $30, Safari Books Online is very cost effective if your serious about learning anything related to programming.

share|improve this answer
1  
so which book do you find useful from O'Reilly Safari Books Online? – Henry Aug 5 '10 at 1:19
Probably Erica Sandun's "The iPhone Developer's Cookbook" my.safaribooksonline.com/9780321670168 – TechZen Aug 5 '10 at 12:13
However, I would add that it is the collection of books itself that is the most useful. I don't have to have a favorite or best because I have 90% of the books on iOS dev that exist. Different books have different strengths and weaknesses on different subjects. Different people relate to different books better. My point is why restrict yourself to someone else's idea of the "best book" when for the same price, you can get them all? – TechZen Aug 5 '10 at 12:16

Neil Smyth has really nice writing and flow to his books. I've found his iPad iOS 4 Development Essentials to be very helpful, but I think the iPhone iOS 5 Development Essentials should be what I need for the 4.2 version I'm learning.

http://www.techotopia.com/index.php/Main_Page

share|improve this answer

developer.apple.com is essential for documentation and samples.

share|improve this answer

I wrote a blog post with a few of the suggestions I had: Resources For Learning iPhone Programming.

My favorite book by far is Cocoa Design Patterns. It shows you not only how but why Cocoa projects are written the way they are.

share|improve this answer

The best book on Objective-C is "Objective-C Programming: The Big Nerd Ranch Guide (Big Nerd Ranch Guides)" by Aaron Hillegass. Written in human language, it is much more better than Kochan's complicated book.

share|improve this answer

Beginning iPhone development: Exploring the iPhone SDK is a good introduction.

Link to the book on Amazon.

share|improve this answer

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