vote up 75 vote down star
165

I am looking for an introduction into developing for the iPhone. Any recommendation? I do not speak Objective-C either, so tutorials on that would not hurt either.

flag

24 Answers

vote up 75 vote down check

I collected some links I used to start with iPhone development:

And don't forget all the "Geting Started" articles on Apple's Developer Connection. Here is the "Getting Started with iPhone OS" tutorial.

link|flag
iphonedevcentral.org seems very promising!! – bentford Sep 25 '08 at 0:05
The "How to jump start iphone development" is a broken link – Rax Olgud Aug 30 at 17:16
You've gotta love PeepCode screencasts by Geoffrey Grosenbach, hes recently done a series on iPhone view controllers peepcode.com – Matthew Oct 28 at 21:02
The first link is down btw – rpetrich 2 days ago
@rpetrich: thanks! Fixed the link. – splattne yesterday
vote up 0 vote down

Unfortunately there are not too many "well structured" iphone programming courses being offered online.

They either lack a well defined process, organization and most importantly the support and mentorship that one needs.

EDUmobile.ORG is changing this with their Elite Module that teaches iPhone Programming over a 12 week period.

The course is offered via Online Video, Weekly Worksheets, PDFs, One-on-One help and access to Private Forums.

There are over 100 students undergoing training to date, and the feedback is nothing less than fabulous!

You even get to work on your first industrial app and you may publish through the site if it interests you. Those who do not have access to a Mac or Virtual MacOS, can ask for remote desktop login to a Mac development environment.

You can get the full information at iphone courses

link|flag
vote up 1 vote down

Some of this may repeat previous answers, but it is a collection of links to sample code collections for the iphone. I previously posted this as another question, but I thought it could be helpful here.

Apple Sample Cope: http://developer.apple.com/iphone/library/navigation/SampleCode.html

Apps Amuck 31 days: http://appsamuck.com/

Beginning iPhone Developing: http://www.iphonedevbook.com/

Chris Software: http://chris-software.com/index.php/dev-center/

Dave Long's downloads: http://www.davedelong.com/downloads

iPhone Developers Cookbook: http://code.google.com/p/cookbooksamples/downloads/list

iPhone SDK source code: http://sites.google.com/site/iphonesdktutorials/sourcecode

Joe Hewitt three20: http://joehewitt.com/post/the-three20-project/

Stanford iPhone code: http://www.stanford.edu/class/cs193p/cgi-bin/downloads.php

WiredBob (TabBar in Detail view): http://www.wiredbob.com/blog/2009/4/20/iphone-tweetie-style-navigation-framework.html

link|flag
vote up 1 vote down

I know this is an older post, but I'd definitely go with the Stanford iPhone Application Programming course. It's like actually taking the course without handing in the assignments.

One time when I was watching one of the lectures I had a question about one of the points he made, then someone in the class actually asked the exact question I was thinking of.

One last thing, go and rip the site, I used the Scrapbook plugin for Firefox, because they will be taking down all of the material.

link|flag
But I think you can download this from iTunes as well. – gyurisc Jun 9 at 7:06
Apologies I thought that there can be more than one answer to a question. – gyurisc Jun 9 at 7:20
Yea totally, only bonus on the website is they have extra material like source code for demos. – Meroon Jun 9 at 18:15
vote up 1 vote down

From Actionscript To iPhone development

If your an actionscript (ECMA script, javascript developer will do well also) this blog is pretty good to get you started

link|flag
vote up 2 vote down

Disclaimer, I run the site.

iPhone Dev SDK: http://www.iphonedevsdk.com/forum/

iPhone Dev SDK - Popular Threads: http://twitter.com/iphonedevsdk

link|flag
vote up 3 vote down

I found it impossible to get going on iPhone programming until I got a book. The Pragmatic Programmers have a good iPhone SDK book. I was able to get to a working app from this despite no prior experience of MacOS programming, XCode, Cocoa or Objective-C etc... I did have a good knowledge of C/C++ and Java though.

link|flag
vote up 1 vote down

Just as an FYI the NDA has now been lifted so you can talk and write about your work with the iPhone SDK.

link|flag
vote up 27 vote down

Pretty impressed with http://www.appsamuck.com/

A new iPhone app is written everyday, and listed on the site with source code and screen shots.

link|flag
vote up 0 vote down

Simple iPhone application tutorial

Apple's iPhone Dev Center does provide a tutorial which covers writing a complete, simple application. It uses small blocks of code that are given both inline explanation and supplemented with numerous references to other documentation that give a complete treatment of the subject. It even explains how to start Interface Builder and add a text field and change the text...

If you have access to the SDK, see "Your First iPhone Application".

link|flag
vote up 4 vote down

I've been going down this same path for a couple of weeks now. There are a couple of tutorials out there (e.g. iPhone SDK Tutorial: Build a Simple RSS reader for the iPhone and a couple of others at iCodeBlog) which will get you started. However, I found that neither really explains the rationale for the steps laid out. You'll get an app that works in the end, but without any appreciation for what is actually happening in the code. If someone is already a Cocoa developer, these tutorials would probably be a decent start.

Having no Obj-C (or indeed any OS X) development experience, the reference I've been using is Aaron Hillegaas' Cocoa Programming for Mac OS X. It is outstanding. I've been working with the 2nd Edition and there are some differences in XCode and IB that are updated in the 3rd, so I recommend that one. If you know nothing about Objective-C and Cocoa, this is the book to have. He throws you in the deep end with a functioning app, but then backs up, building and explaining things from the ground-up. It isn't an iPhone programming resource, but will make you much better equipped to understand and learn from the iPhone development tutorials out there.

Another benefit is that developing in XCode for Mac OS X offers a more polished experience than the iPhone tools (which are nice enough, but not as seamless). So if you're just getting started, learning Cocoa from the ground up will smooth the learning curve considerably.

One thing you didn't mention is what current experience you have with other languages. Getting up to speed on C wouldn't be a bad idea either.

link|flag
vote up 2 vote down

If you are new to Objective-C, an excellent reference for C++ and Java programmers is this document with C++ and Objective-C (and some Java) examples of various common language features, so you can quickly get up to speed on common operations:

http://ktd.club.fr/programmation/fichiers/cpp-objc-en.pdf

link|flag
vote up 1 vote down

Slight rant: The iPhone SDK non-disclosure thing seems to basically be to stop people publishing books on the SDK while Apple are (probably) planning to change stuff soon. Apple will not start sending you cease-and-desists for writing a tutorial on your blog..

That aside, Become an Xcoder is a good guide to start with - it describes the basics of ObjC and Cocoa (it explains the slightly-strange [myObject myMethod:args] syntax, and Interface Builder actions/outlet things that confused me to no end).. I went from knowing very basic C, to understanding ObjC better than C..

My only problem with Become an Xcoder is that it ends very abruptly.. I was just getting the hang of the syntax, and Interface Builder, and then it ends! I really wish there was a second part, that goes though making a complete (even very simple) Cocoa application. Regardless, the knowledge you'll get from Become an Xcoder will apply to iPhone dev.

I've not found a tutorial that covers writing a complete, simple application (either for the iPhone, or Cocoa) - they all either give you huge blocks of code without explaining how on earth you're supposed to know what any of it does, or explain how to start Interface Builder and add a text field and change the text.

Edit: Responding to widespread criticism, Apple said Wednesday that it has decided to do away with its non-disclosure agreement (NDA) for released iPhone software while it drafts a new agreement covering just non-released software (link).

link|flag
vote up 0 vote down

I've been unable to stop touching it [an iphone] for more than 24 hours now...

I so understand that.

link|flag
vote up 0 vote down

I can definitely recommend learning Objective-C and Cocoa first.

Cocoa Touch (Cocoa for iPhone) is similar to (desktop) Cocoa. It is also simpler. But the base classes are the same.

Basically you are just looking at two different GUI toolkits.

link|flag
vote up 0 vote down

I was wondering if they will really enforce the NDA if you publish a tutorial on your website.

link|flag
vote up 5 vote down

While you do have to agree to an NDA to get the iPhone SDK, you don't have to physically sign an agreement and send it in, or pay money just to download the SDK. You can sign up for a free Apple Developer Connection account, join the free iPhone developer program, and then download the iPhone SDK which includes a ton of documentation and sample code.

One other thing: You wouldn't go wrong by learning Objective-C and Cocoa on Mac OS X first. There is a lot of tutorial material out there including the Cocoa Dev Central tutorials, the free Become an Xcoder online book, Apple's free online developer documentation, and print books like "Cocoa Programming for Mac OS X" and "Xcode 3 Unleashed" (both of which recently came out and cover Mac OS X 10.5 Leopard).

link|flag
vote up 0 vote down

That's amazing. WTF are they thinking? I got an iPhone recently and have been looking forward to learning how to program it. I had no idea it was like this!

Same here - that's wild, even by Apple's standards. I just bought a 16Gb 3G on the pretext of learning to develop for it. When I am finally able to put it down (I've been unable to stop touching it for more than 24 hours now...) I will check out those links. It certainly is an awesome device. Did you know it has a phone in it as well?

link|flag
vote up 6 vote down

A simple tutorial from TheAppleBlog.com

iPhone SDK Tutorial: Build a Simple RSS reader for the iPhone

link|flag
vote up 5 vote down

I imagine it will be removed rather soon, so learn the basics while you can.

iPhone Video Tutorials

link|flag
vote up 1 vote down

NilObject wrote:

I'd love to write some articles and tutorials, but unfortunately if I distributed them, I would be in violation of the NDA.

Orion Edwards wrote:

The first rule of iphone development, is you do not talk about iphone development

That's amazing. WTF are they thinking? I got an iPhone recently and have been looking forward to learning how to program it. I had no idea it was like this!

link|flag
vote up 2 vote down

Unfortunately all of the docs will be coming from Apple while the SDK is under an Non-Disclosure Agreement. I'd love to write some articles and tutorials, but unfortunately if I distributed them, I would be in violation of the NDA.

link|flag
vote up 7 vote down

For Objective C, this online book is really good...
it was recommended when I took my Cocoa class.

http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/ObjC.pdf

link|flag
vote up 11 vote down

Join the Apple Developer Connection. It's free, a great resource and has everything you need to get started.

link|flag

Your Answer

Get an OpenID
or

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