What is the difference between window based and view based iphone apps?

iphone, objective-c

Solution

From xcode:

The window based template provides a starting point for any application. It provides just an application delegate and a window.

This view based 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.

Problem

What is the difference between window based and view based iphone apps ? Thanks

Original source