Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 Xcode 构建阶段将我的 iOS App Bundle 的内容复制到特定目录。谁能告诉我该怎么做?
在“构建阶段”中使用脚本的解决方案无法正常工作,因为在运行脚本时 Xcode 尚未完成构建应用程序。这是一个解决方案,其中包含在所有构建任务完成后运行的脚本:
脚本:
PRODUCT="${BUILT_PRODUCTS_DIR}/${TARGET_NAME}.app" cp -R "${PRODUCT}" ~/Desktop