Frank Martin
Frank Martin

Reputation: 2594

Resources how to architect a iPhone application?

What resources can you recommend for learning how to architect a iPhone application?

Background of the question is that most of the resources explain the usage of a single class or concept (and i appreciate that a lot to learn something about the specific topic) but as far as i can see they lack unfortunately to describe how to put things together for typical real world applications.

Upvotes: 0

Views: 422

Answers (2)

Shaggy Frog
Shaggy Frog

Reputation: 27601

You should focus your search on best practices, as a lot of the details that go behind proper architecture are found in getting those general fundamentals right.

Otherwise, if you want to know how "typical real world applications" are designed, you should go and find some open source projects and download them. There will undoubtedly be a variation in quality but it should give you a general idea of how apps get built.

Overall I don't think you'll see a general tutorial on how to build an iPhone app because all applications are different. They solve different problems under different requirements for different kinds of users. You'll probably find that the answer to your question can only be found by trying to build something on your own.

Upvotes: 1

Andy White
Andy White

Reputation: 88345

This won't give you a ton of help with architecting large applications, but I found this site to be really useful for finding good examples for working with animations and all the ViewController stuff: http://appsamuck.com/

Upvotes: 1

Related Questions