cstrouse
cstrouse

Reputation: 308

What type of iOS project template should I start with?

I'm building a project similar in design/scope to Invoice2Go and was wondering what the appropriate iOS project type would be to start with in XCode.

Upvotes: 0

Views: 805

Answers (2)

Vijay Kiran
Vijay Kiran

Reputation: 545

I think the app looks like Tab Bar based application. You can try using that template. Of course you can start with simple Window based app, but you need to wire it all up yourself.

Upvotes: 0

Wolfgang Schreurs
Wolfgang Schreurs

Reputation: 11834

It doesn't really matter, from the most basic template (Window-based Application) you can setup any app. It seems Invoice2Go makes use of a tab bar, so the Tab Bar application seems most convenient, though you can add a tab bar to the Window-based Application as well.

Personally I like to start with a Window-based Application most of the time, this gives me the most flexible starting-point.

Upvotes: 4

Related Questions