Question

I have seen a lot of things about 'targets' while working with xcode. when i click on the project icon (blue, in xcode 4.2) i see 'Targets' in the middle pane with my file name under it.

What does that mean? and can I add more 'targets' to my project? If yes, what would that mean?

I have this: http://developer.apple.com/library/ios/#featuredarticles/XcodeConcepts/Concept-Targets.html

but i didn't understand a thing

Was it helpful?

Solution

A target basically defines what it is you are building and how you are building it. You can add more targets if you would like to build more than one thing. This usually makes sense if you need to build several related things from the same project.

For instance, you might want one target for a full, paid version of an application, and another target for a reduced, free version of an application. Both targets would include much of the same code and resources, but some of the settings would be different and you might have different files included with each.

OTHER TIPS

Targets are simply different ways of building a product. You have your source files, and you have your output, and there are several ways that you can get from A to B.

An Xcode project may contain a number of source files which can be built do produce a number of different products.

For example, you could build an executable using some of the files, or you could build a library (Framework) from some of the files, or a unit test library, or with different build flags.

Most projects will have a single target, but some are more complex than others.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top