如何将js文件添加到我的xcode项目中?

发布于 2024-08-16 17:15:14 字数 192 浏览 11 评论 0原文

我在我的 xcode 左侧项目树中添加了一些 js 和 css 文件。但是当我构建这个项目时,我收到警告:没有规则来处理架构 i386 的 sourcecode.javascript 类型的文件 '$(PROJECT_DIR)/js/builder.js'

我想如果我在 xcode 中丢失了项目的一些设置,但是如何添加一些js和css文件呢?非常感谢!

I add some js and css files in my xcode left project tree. but when I build this project , I got the warning : no rule to process file '$(PROJECT_DIR)/js/builder.js' of type sourcecode.javascript for architecture i386

I think if I lost some setting with my project in xcode , but How to add some like js and css files? Thank you very much!

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

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

发布评论

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

评论(3

煮酒 2024-08-23 17:15:14

当您添加 JavaScript 文件时,Xcode 会检测到该文件是源代码文件,假设您要编译它并自动将其添加到编译源构建阶段。

要阻止 Xcode 尝试编译它并使其复制文件,请在“组和文件”列表中展开您的目标,从编译源构建阶段中删除 JavaScript 文件并将其添加到复制捆绑资源构建阶段。

When you add the JavaScript file, Xcode detects that the file is a source code file, assumes you want to compile it and automatically adds it to the Compile Sources build phase.

To stop Xcode trying to compile it and make it copy the file instead, expand your target in the Groups and Files list, remove the JavaScript file from the Compile Sources build phase and add it to the Copy Bundle Resources build phase.

笑脸一如从前 2024-08-23 17:15:14

对于 Xcode 4,单击主项目,单击“构建阶段”。打开编译源复制捆绑资源,然后您只需将文件从一个文件拖到另一个文件即可。

For Xcode 4, click on the main project, click on Build Phases. Open up Compile Sources and Copy Bundle Resources then you can then simply drag the files from one to the other.

不语却知心 2024-08-23 17:15:14

我遇到了同样的问题,我可以在 Xcode5 中用简单的技术解决这个问题。当您将 HTML 文件添加/拖动到 Xcode 包中时,您需要通过分组为 2 种类型

1.assets

2.index.html

来添加它们,您只需要添加这两个文件。

assets 文件夹包含所有 HTML 文件,如图像、.js、内容、css。所有 HTML 文件都应该是
包含在资产文件夹中。我的意思是您需要将 asset 文件夹中的所有 HTML 文件分组为单个文件夹。

然后将包含 ASSETS 和 INDEX.HTML 文件的特定文件夹拖到 Xcode 包中。

然后对控制器声明和实现部分进行一些更改。就这样,您现在可以在模拟器中运行您的应用程序了。如果有人不理解我的答案,请告诉我,我将通过屏幕截图添加清晰的信息。

我希望它会对某人有所帮助..谢谢!

如果有人仍有任何疑问,请告诉我,我会逐步解释

I got the same problem and I could solve this problem with simple technique in Xcode5. when you add/drag your HTML files into Xcode bundle you need add them by grouping as 2 types

1.assets

2.index.html

you need to add these two files only.

assets folder contains all HTML files like images,.js, content,css. All HTML files should be
included in assets folder. what I mean is you need to group all HTML files in assets folder as a single folder.

Then you drag that particular folder which contains ASSETS and INDEX.HTML files into Xcode bundle.

Then do some changes in your controller declaration and implementation sections. That's it you can run your application in simulator now.If any one have not understood my answer please let me know I will add clear information with screen shots.

I hope it will help some one..Thank you!

If anyone have any doubts still let me know i'll explain step by step

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