I'm new to Objective-C and I have gone through many topics, What are the key concepts on which I should put more emphasis for developing iPhone Apps?
|
|
There are a number of concepts which make up the basics of iOS development. There coding patterns, techniques and some general tidbits that you should know about. Coding Patterns:
Coding Techniques:
Basic Concepts:
Finally, I leave you with a word of advice: Although you have StackOverflow, and it really is a wonderful resource, know how to use the Apple Documentation. Enjoy your journey and good luck Getting Started! Good luck! |
||||
|
|
|
These aren't necessarily specific to iPhone development, but without them, you will not ever get it.
* the only time you'll deal with stack-allocated objects are blocks ( |
|||||||
|
|
For developing successful iPhone apps, you need to know more than the typically offered Objective C best practices. Of Objective C practices, knowing the delegation pattern and memory management rules is very important for iPhone development. There are lots and lots of APIs in the Cocoa Touch framework. The more APIs you are familiar with, and have played with, the better. That alone can take a significant amount of time. You should learn that an event driven framework such as Cocoa Touch mostly calls your app, not vice versa. You should learn how UI design works differently on touch based devices with tiny displays. Too few developers see if their grandma (et.al.) wearing thick tri-focals can even see some of their icons. Or whether a UI control can be operated while using a device one-handed while walking around. Etc. You should learn how to design for constrained system. A mobile device likely does not have seemingly infinite amount of backing swap memory. So you need to learn how to measure and strongly control an app's memory footprint. And the battery on a small device will last a lot longer if your apps can leave the CPU mostly idle. So you will want to learn how to profile your algorithms and how to pick efficient ones. I suggest getting an older slower iOS device, and learning how to make apps work well under those limitations first. (I've heard that Apple used to do that internally as part of their training.) |
||||
|