Comment on Ask HN: Experienced programmer, beginner to iOS (objective-C). Where to begin?Comments−gdubs14yBig Nerd Ranch guides are indispensable. Written by someone who was involved with NextStep very early on.Watch the Wwdc videos, starting at 2010, and following with 2011.Use ARC.Pay attention to the Wwdc videos on core animation.Spend time learning about delegates.Don't shy away from Interface Builder.Check the header files when documentation seems incomplete. They are a great resource.−architguptaOP14yARC's usage seems conflicted! :D−gdubs14yApple's recommendation is to start using it today. Retain/Release patterns always took newcomers a long time to master, and it distracts from building applications. In Apple's own words, it's a compiler's problem – shouldn't be yours.
Comments
Big Nerd Ranch guides are indispensable. Written by someone who was involved with NextStep very early on.
Watch the Wwdc videos, starting at 2010, and following with 2011.
Use ARC.
Pay attention to the Wwdc videos on core animation.
Spend time learning about delegates.
Don't shy away from Interface Builder.
Check the header files when documentation seems incomplete. They are a great resource.
ARC's usage seems conflicted! :D
Apple's recommendation is to start using it today. Retain/Release patterns always took newcomers a long time to master, and it distracts from building applications. In Apple's own words, it's a compiler's problem – shouldn't be yours.