tags:

views:

37

answers:

1

They seems pretty similar.What is the different? If I choose wrong, can I change it after I start coding?

A: 

A window-based project provides you with just a window and an application delegate class. The View-based gives you both of those, plus an initial UIViewController-based class. You can always add a viewcontroller to a window-based project, or remove it from the view-based one. If you're just starting out, I'd recommend at LEAST the view-based one.

Ben Gottlieb