It is my first day with iOS development. I got Xcode and all the other things. Then I created a new project. Many of the tutorials I found online recommended starting a windows-based application, but I didn’t see it so I started a page-based application instead.
What is the difference between them? Maybe my version of the things I downloaded is newer than the ones in the tutorials?
Also, my dev interface has .h and .m files. The code there looks equally foreign to me at the moment. Where do I start programming? 🙂
Thanks!
Start with single view template. You can test controls and UI elements on the single view that has been created for you.
Also the h means the header and the m means the implementation. in the h you announce the public elements of the class. in the m you implement them.
this tutorial should be helpful:
http://www.raywenderlich.com/1797/how-to-create-a-simple-iphone-app-tutorial-part-1