Which template for my iOS project?
I'm about to create a new application and wanted to know what template to start with for the follo开发者_StackOverflowwing functionality and any key pointers you can provide for a beginner would be really appreciated!
Starts with splash screen and goes to first view
UITabBarController at the bottom and header at the top for every viewFirst view - textbox, submit button, 2 items in a table which sends the user to a sub-view
Second view - a list of items which once clicked take the user to a view which can also take them to a subview Third view - a list of items which once clicked take the user to a view which can also take them to a subview Fourth view - a search function, displays a list and once clicked take the user to a view which can also take them to a subview Fifth view - a list of items which once clicked take the user to a view which can also take them to a subviewThank you!
It doesn't really matter, because you can basically make any app out of any template (they're not that different), but the "Tab Bar Application" template is probably a good start for what you want to do.
Navigation based application
or Tab Bar Application
seem to suit your needs. This template provides a starting point for an application that uses a navigation controller. It provides a user interface configured with a navigation controller to display a list of items.
or if you want to control creation of all the views, you can start with View-based application
and do the navigation yourself. This template provides a starting point for an application that uses a single view. It provides a view controller to manage the view, and a nib file that contains the view.
All the best...
Window-based application. It'll pay off in the end learning to create your views without Interface Builder. Besides, there's LOADS of tutorials on how to do things without Interface Builder.
精彩评论