The basics
Learn Objective-C
Learn UIKit (aka iPhone programming)
Unlike most books, the ranch guide explains the class hierarchy as you go. Otherwise you end up with pretty applications after a series of steps, but unable to fly solo.
I like to read a subject from several books at once. I have almost every book on iPhone programming, and I can also recommend
Do your homework
I suggest you take notes and do exercises. Concentrate on small tasks. For example, create a "Navigation-based Application template" project, and try to understand it. Then add features like, create a cell, delete a cell, sort them, click a cell to push a second screen. Things like that.
Due to GCC limitations, XCode is not as sophisticated as Eclipse. First thing you should do is activate NSZombieEnabled in your project to get better error messages.
You'll find small obstacles and make stupid mistakes. It is of great help to have someone nearby to help you. If you don't, there is StackOverflow.
Advanced stuff
Core Data is Apple's O/R mapping for the iPhone. You'll use it for any database related stuff.
Core Graphics/Animation lies below UIKit. To go beyond what most iPhone programming books will teach you, you'll need to do your own drawing to achieve advanced UI customization.
The WWDC sessions are always terrific stuff from the Apple employees that wrote the UIKit framework. WWDC 2010 is free for registered developers:
Some weblogs are loaded with useful tips and tricks: