Editing the build phase of a script in Xcode

In Xcode, I created a new script build phase and want to do one of two things:

  • Change it
  • Delete it

I can see how to add a new one, but not how to access an existing one?

+5
source share
4 answers

In the xcode project tree, click on goals, then select the target for which you added the script. Each time you add a new script / event, it will be displayed as a new gray folder in the target subtree. Select the folder with the name "Run Script", right-click, select "Get Information": the body of the script will be on the "General" tab.

, , , .

+4

, ( , , , , ), , , , , - . , script script, . , iOS "", Archive , .

+5

, , script, ( ) http://runscriptbuildphase.com. Xcode 4, Xcode 3.

+2
source

Found it!

See the โ€œAdding and Removing Assembly Phasesโ€ section of the Xcode Assembly System Guide.

In your Xcode project, in the "Goals" section of the "Groups and Files" panel, you can see the "Run" Script ... double-click to edit, delete to delete.

// :)

+1
source

All Articles