raffian
raffian

Reputation: 32066

Xcode - How to create a simple objective-c application using a project template?

I want to create a new project in Xcode (4.2), but I don't need any fancy windows or iOs templates, just a simple, standalone project (with an auto-generated main() perhaps) where I can build some classes and run simple tests.

Is the Cocoa Application template under Mac OS X the most suitable for this?

Upvotes: 0

Views: 2282

Answers (2)

Eduardo Russo
Eduardo Russo

Reputation: 4219

Cocoa Application will create a project with the Application menu only… maybe it's what you need.

Upvotes: 0

CrimsonDiego
CrimsonDiego

Reputation: 3616

If you want just a simple, no-ui console app for testing classes, just go with Console Application. It has main.m, and very little else. If you want something completely empty, however, under the Other category for templates, there's one called Empty.

Upvotes: 2

Related Questions