在 Xcode 中,如何排除具有设置名称的文件放入应用程序包中

发布于 2024-08-21 15:34:34 字数 220 浏览 7 评论 0原文

当我启动 Xcode 项目时,我会拖入一个空白的 readme.txt 文件,我在解决问题时用它来记笔记。问题是,该文件在构建时被放入应用程序包中。然后我必须在详细信息视图中取消选择它,这样就不会发生这种情况。

有没有办法自动从每个构建中排除已知名称的文件?

我知道 Xcode 是可自动化的,但我不知道去哪里寻找。

使用最新的非 beta Xcode 版本。

When I start an Xcode project I drag in a blank readme.txt file that I use to take notes with while I'm figuring things out. The thing is, the file gets put in the app bundle at build time. Then I have to deselect it in the Detail view so that won't happen.

Is there a way to automatically exclude a file with a known name from every build?

I know Xcode is automatable, but I don't know where to look.

Using the latest non-beta Xcode version.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

残花月 2024-08-28 15:34:34

在项目大纲视图中(默认情况下,这是打开 Xcode 时的左侧窗格),在“目标”部分下找到您的应用程序。展开副标题,其中之一是“复制捆绑资源”。您可能会发现您不需要的文本文件已自动放置在此处。突出显示此处的文件并将其删除 - 这会将文件保留在您的项目中,但会阻止 Xcode 在您执行构建时将其复制到您的应用程序包中。最后,选择“清洁和清洁”。从 Xcode 构建菜单中选择“Build”来完全清除旧包并使用新设置重新创建它。

In the project outline view (by default this is the left hand pane when you open Xcode) locate your application under the 'Targets' section. Expand the subheadings, one of which will be 'Copy bundle resources'. You will probably find your unwanted text file has been placed here automatically. Highlight the file here and delete it - this will leave the file in your project but will prevent Xcode from copying it to your App bundle when you perform a build. To finish off, select 'Clean & Build' from the Xcode build menu to clear out your old bundle completely and recreate it with your new setting.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文