3

In Xcode 3, I had a list of targets in the left column. They're not there anymore. There's a list in the Scheme pull-down, but I can't find them anywhere else. Have they changed name to "Schemes"?

nevan king
  • 112,709
  • 45
  • 203
  • 241

5 Answers5

6

Click the button as below images

enter image description here

Mahdi Bashirpour
  • 17,147
  • 12
  • 117
  • 144
5

Targets are still there. Click on the project (the very first object in the tree) in the project navigator and you'll get a view with project settings on the right and targets on the left.

Marc Charbonneau
  • 40,399
  • 3
  • 75
  • 82
0

Click on the top level item in the left hand project view - it will show you the project and the targets in the main pane - along with their configurations

Abizern
  • 146,289
  • 39
  • 203
  • 257
0

No, targets and schemes are not the same thing. Your targets are still there: in the navigator in the left, click on the Project icon (it says "1 target, iOS SDK 4.3" or something similar underneath the usual .xcodeproject icon). THe main view now shows the project editor, where you can see and edit all your targets.

Schemes are basically ways to aggregate targets in useful ways when performing common actions like building and testing.

-1

Yep, they are inside "Schemes" now. Each scheme can contain differing targets/build configurations.

If you click the dropdown and choose "Edit Scheme..." where your targets used to be in Xcode 3, then click "Run AppName..." or "Test" in the left side tree, under the "Info" tab you'll find the Build Configuration dropdown that contains Debug, Release, etc. in addition to the target Executable.

taber
  • 3,166
  • 4
  • 46
  • 72