I’m just starting out with iPhone development. I started with Stanford’s recent tutorial, and while it’s up to date, the project it’s using in the demo is extremely boring to code (a calculator? really?).
So I’m looking for a different tutorial now. Been searching for days but all I found were outdated books and videos. I need something that teaches me with all the new API’s and skips memory management and obsolete stuff.
What do you recommend?
Memory management is not obsolete by any means. Automatic Reference Counting helps but you still need to learn how retain/release works in order to avoid certain pitfalls. iOS does not provide garbage collection and even with ARC you are still responsible for managing your memory.
This is the best book on the subject I know of. It is a very clear example of where $30 invested in a few hundred pages is vastly more cost-effective than an infinity of free stuff on the internet.
There is also Ray Wenderlich for specific tutorials.