如何从Xcode中删除运行脚本阶段

时间:2008-10-31 08:05:46

标签: iphone ios xcode

我尝试了这一步:

选择菜单选项“Project> New Build Phase> New Run Script Build Phase”,然后输入以下脚本(不要忘记用gen_entitlements.py的正确路径替换/ Users / youruser / bin) :

export CODESIGN_ALLOCATE=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate
if [ "${PLATFORM_NAME}" == "iphoneos" ]; then
    /Users/youruser/bin/gen_entitlements.py "my.company.${PROJECT_NAME}" "${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/${PROJECT_NAME}.xcent";
    codesign -f -s "iPhone developer" --resource-rules "${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/ResourceRules.plist" \
         --entitlements "${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/${PROJECT_NAME}.xcent"  "${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/"
fi

(来自link

现在我想从我的项目中删除此脚本。如何从Xcode中删除“运行脚本构建阶段”构建阶段?

3 个答案:

答案 0 :(得分:24)

在目标中选择“运行脚本”阶段并将其删除。

Delete

答案 1 :(得分:6)

对于xcode 4.5.1,外观略有不同,在运行脚本阶段单击一次,同时按功能+退格键(在mac上)删除。弹出对话框后,单击“删除”。enter image description here

答案 2 :(得分:0)

  1. 在项目导航器中,转到左上角并选择蓝色图标
  2. enter image description here

    1. 在屏幕的顶部中央选择Build Phases
    2. enter image description here

      1. 当您看到要删除的Run Script时,请在其右下角看到,并且您会看到X
      2. enter image description here

        1. X,您会看到一个菜单,询问您是否要将其删除
        2. enter image description here

          1. 选择Delete