up vote 16 down vote favorite
14
share [g+] share [fb]

I went though "Become an Xcoder", which was very useful, but it ended very abruptly, just as I started to understand about ObjC's syntax, and about Inlets/Outlets and such in Interface Builder.

I've looked around, and found a bunch of tutorials that cover writing an application, but these either seem to be "Open Interface Builder, add a text label, change the text and click Run", or "Open IB, add this, this and this, add these inlets/outlets. Now here is a hundred lines of ObjC to copy and paste. Click compile and you're done". There was no middle ground.

Basically, I would love a tutorial that actually shows how you arrive at the end code, and shows how to make something beyond "Hello world".

Ideally it would be centered around the iPhone Cocoa Touch stuff (but there will be far more Cocoa tutorials around, and the two systems are pretty similar) - either would be incredibly useful!

(Please don't discuss the iPhone-SDK NDA. It's really not intended to prevent bloggers and such posting tutorials..)

[Update] I bought the Aaron Hillegass/Cocoa Programming book. It's extremely useful, and is very relevant to iPhone programming - for one, none of the code in the book depends on the ObjC2.0 garbage collection which is the biggest difference between programming for the phone vs regular Cocoa.

link|improve this question

1  
The language of the NDA surrounding iPhone development is clear. Just because you don't like it doesn't make it any less so. – Chris Hanson Sep 10 '08 at 7:41
Okay, but my point is that Apple *eally don't care if you post a iPhone SDK tutorial. Also, I just looked at the agreement, it says "and any other non-public information you learn". I'd argue the use of the SDK is now public, therein, not really covered.. But arguing SLA in <300cars is hard.. – dbr Sep 13 '08 at 11:19
feedback

18 Answers

up vote 8 down vote accepted

iPhone SDK Articles really got me started with iphone dev. Sadly no updates during the last couple of weeks.

Lessons from Molecules for those new to OpenGL on the iPhone

The IPhone's gaming mettle describes the hardware of the iPhone

link|improve this answer
Thank you! That first really simple tutorial is perfect. There's only a few lines of code and they are commented \o/ – dbr Sep 15 '08 at 22:55
feedback

See http://stackoverflow.com/questions/7571/cocoa-and-objective-c-resources

Personally, I recommend the Hillegass book. You can stop about halfway through if you are more interested in Cocoa Touch than OS X desktop apps.

link|improve this answer
feedback

iTunes U, iPhone Application Programming

The video from the CS193P class.

link|improve this answer
feedback

I second the recommendation for the Hillegass book for Cocoa (haven't found a great resource for touch yet, as I haven't progressed that far.)

The Apple Objective-C documentation has been very good for me as well: The Objective-C 2.0 Programming Language

link|improve this answer
feedback

The course materials for Stanford's CS193P course, "iPhone Application Programming" are all online for free here. I'm currently working my way through the lessons, and I'm finding the class assignments very valuable indeed.

link|improve this answer
feedback

O'Reilly has a good book - it's a little way down on this list from Amazon This list has grown significantly since I last looked - wish I had more input.

link|improve this answer
feedback

Scott Stevenson has a lot of good Cocoa tutorials on CocoaDevCentral.

Of course these cover Cocoa, not Cocoa Touch, because the latter is under NDA.

link|improve this answer
feedback

The "Hello World"-style tutorial provided in the Dev Center seems to be closer to the middle ground that you seek, even if you say you don't want a "Hello World" example:

Your First iPhone Application

It strives to illustrate the fundamentals of all Cocoa development using as few lines of code as possible. It also provides explanations throughout of why the code is written as it is (and sometimes provides alternatives), and gives numerous references to background material.

link|improve this answer
feedback

I really love this beginner's tutorial by Andy Matuschak, the author of Sparkle:

Getting Started With Cocoa: A friendlier approach

link|improve this answer
feedback

Here's a nicely written quickstart guide for C programmers - http://cocoadevcentral.com/d/learn_objectivec/

link|improve this answer
feedback

Use http://www.iPhoneKicks.com (links site) this is just a bookmarking site. But you can find best tutorial links for iPhone SDK development.

link|improve this answer
feedback

I highly recommend this video course by iDeveloperTV. It is these two guys sitting around talking through every aspect of ObjC. They have a kind of good cop/bad cop schtick that effectively stops the conversation when confusing nuances of the language pop up - ones that books often just breeze over.

In this 13 hour video training course we start out with the absolute basics, introducing you to Xcode and how to compile an application, we then move on to basic C language constructs and types. We show you how to declare and use functions, procedures, and so on. Then we move on to Object Oriented Programming, and cover how OOP is implemented in Objective-C and how to use objects in your apps. We also cover memory management in depth so you can be sure to write apps that do the right thing when it comes to allocating and freeing memory. We even cover garbage collection as well, so you know how and when you can use GC in your apps."

enter image description here

Also, a good Video Series is Lynda's Objective-C Essential Training with Simon Allardice. This guy is straight out of a Cham-WOW infomercial, headset and all… But he's good at breaking things down in a clear and concise way. He covers all the basics too..

Understanding the structure of an Objective-C program Logging messages to the command line Writing conditional code Working with variables, classes, and functions Creating code loops Using existing classes in the Foundation framework Managing memory usage Creating custom classes Working with arrays Reading and writing strings Understanding inheritance and NSObject Using Categories and Protocols Compiling and debugging code Writing exception handlers

cham-WOW

I find these courses easier to get through and "take-in" than a long, boring Objective C book. Also, if you are having a problem with a certain aspect of your work, it often helps to simply put on the related chapter - in the background - and hearing these guys remind you how to do it can help you realize what you're doing wrong… as you're doing it, lol.

link|improve this answer
feedback

Here's an extensive Objective C tutorial: http://www.otierney.net/objective-c.html.

link|improve this answer
feedback

You should not suppose (if you were) that using IB is not "the end code." Although everything IB does could be done with explicit Cocoa calls, the dynamic linkage to the IB bundles is a real part of the system model, not just some sort of "training wheels."

I have found Hillegass' book to work on all three essential levels:

  • cut-and-paste "sorcerer's apprentice magic"
  • explanation of why the cut-and-paste stuff works
  • reference to learn/recall the two or three bits that enable you to do something new or bigger
link|improve this answer
feedback

It seems that there are iPhone books ready to be published, however they seem to be held up by Apple's NDA.

As an aside, I've been looking forward to this book for some time as well: Core Animation

link|improve this answer
feedback

Here's a great tutorial on How to build an RSS reader

Also, the Hillegass book is one of the best books on Cocoa.

link|improve this answer
feedback

This is another vote for Hillegass' book, I've read each of the three editions and they're all good. It's one of the most relevant Cocoa tutorials too.

link|improve this answer
feedback

I'm also liking the Stanford CS193P class. I've made it through the first four lectures and the introductory assignments. What I like about the class, compared to the the books, is that it gives you a nice foundation on Obj-C before getting into interface builder/Cocoa.

Additionally, the homework assignments are very well thought-out. They do a terrific job giving you tasks that are just outside of the scope of what they've lectured on, causing you to have to read the documentation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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