REF: XCode
what is the differences between view based vs windows based iphone application?
Where are yo开发者_开发百科u going to use view based and windows based application?
Example? what does facebook use?
In regards to your question about the difference between View-based
and Window-based
templates, a View
template gives you a Window
template with a UIView
already added and configured to display in the window, while the Window
template gives you a blank slate with no default view set up.
About Windows, Views, and Controls
Understanding iPhone Views, Windows and the View Hierarchy
Usually only one window in UIWindow application. Apps can and ususally have multiple views, for example there are multiple views in a your typical iOS navigation application
精彩评论