up vote 53 down vote favorite
77
share [g+] share [fb]

Sample code is one of the most useful tools for learning about programming. There seem to be many sources on the web for iPhone sample code, but some are harder to find than others. Here's a collection of links I've found so far. Does anyone know of some other sources for iPhone sample code?

link|improve this question
1  
+1 thanks for the referral! =) – Dave DeLong Aug 30 '09 at 5:20
+1 Thanks! It's useful to me! – Dio Jun 28 '11 at 8:03
feedback

protected by Michael Petrotta May 14 '11 at 5:24

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

16 Answers

up vote 24 down vote accepted

I find that the most useful sample code for me comes with some explanation of what's going on. I prefer a well explained blog post to just source code. Here's some I like

These are just sample code:

link|improve this answer
feedback

The sample code from the book I co-wrote is also freely available: http://pragprog.com/titles/amiphd/source_code. Good luck!

link|improve this answer
Hey Chris. In my answer to this question, I mentioned that a few of the samples that I looked at in the book seemed like they didn't separate the model out much to make it MVC. Can you comment on that? – chrish Oct 7 '09 at 18:44
1  
Like, for example, how we almost never have a separate model class for our table views, typically using an NSArray as the model? That's two things: the concision demanded of a book, and Cocoa convention to a certain degree. The Cocoa collections are really powerful (NSDictionaries support KVC directly), and Cocoa has a preference for direct use of its classes rather than subclassing. So IMHO it's less common to create a FooModel class if it's not clearly necessary. Thanks for the thoughtful comment. – invalidname Oct 7 '09 at 20:22
feedback

http://icodeblog.com/ has many useful tutorials

link|improve this answer
feedback

I am starting to look at the Wordpress source. I am interested in applications that correctly show how to organize Model View Controller code. My experience in MVC is from ASP.NET MVC and what I learned there is to have clear separation of the Model from the Controller.

I have seen that Matt Gemmell has some Cocoa source available. There may be some lower level stuff that could be useful.

The samples that I have seen in the iPhone SDK Development book by Bill Dudney and Chris Adamson have bother me that they put the model data directly in the Controller and not in a separate Model object. I will give them the benefit of the doubt to say that they did that to keep the code simpler for book sample code. However, I am interested in seeing high quality, organized, MVC code.

link|improve this answer
feedback

http://www.theapptree.com just got started but has a great Navigation and In App purchase sample.

link|improve this answer
feedback

You can look around on many of the shared SCM sites (github, google code, etc) and find interesting things just by looking for "iPhone".

link|improve this answer
feedback

yeah...

for introductory tutorials about iPhone Application Development, visit: http://msmonir.tech.officelive.com

Thank you.

link|improve this answer
feedback

There's also Binpress - it's a marketplace so most components cost money, but there are free components available as well.

Here's a complete iOS app Xcode project available for download for example (it's paid though).

link|improve this answer
feedback

These 2 links may be useful to you. Check them out

  1. iPhone Tutorials For Everyone!
  2. Mobile Orchard
link|improve this answer
feedback

We just posted the source to our iPad game. Hopefully it can be of use to someone. It's real simple, but should offer some insight on development.

http://9magnets.com/project-tapblaster.html

link|improve this answer
feedback

http://www.raywenderlich.com/ has many useful tutorials.

link|improve this answer
feedback

I found all the source code in one Website here it is:

My bank of Knowledge

link|improve this answer
feedback

Code

link|improve this answer
feedback

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