lab12
lab12

Reputation: 6448

Utility Application and View-Based application

I'm new to xcode and the iphone sdk. I've been working with the view-based application for quite a while, and I was wondering if a utility application and a view based application involved the same type of coding. Can someone point out the difference for me?

Thanks

Upvotes: 2

Views: 606

Answers (2)

Matt S.
Matt S.

Reputation: 13753

The both use the same frameworks, the only difference is how they are set up by default. The unity template provides a two view application (by default) and the view based only one.

Upvotes: 1

stefanB
stefanB

Reputation: 79790

It seems that Utility application in Cocoa-Touch is just a simple application template for application with 2 views.

This is apparently good for simple apps which have primary screen and configuration screen. Have a look at Understanding view controllers in Cocoa Touch which has some explanation.

It depends from what point you looking at differences. You still use cocoa-touch for your application. The difference is that simple view based application is a simple template for one screen application, you can extend it as you like. Utility application is simple template for an application with 2 views but you can extend it as you like.

Upvotes: 1

Related Questions