Xcode3 到 Xcode4 代码模板

发布于 2024-10-10 23:00:24 字数 340 浏览 5 评论 0原文

有人可以告诉我如何将代码模板从 xcode3 转换为 xcode4 吗? 我正在阅读文章 http://iphonedevelopment.blogspot.com/2009/04/opengl-es-from-ground-up-part-2-look-at.html 作者提供了他的 OpenGLES 代码模板,但我不能让它在新的 xcode4 中工作,似乎它有不同的格式。有什么建议吗?

提前致谢 :)

can someone tell me how to convert code templates from xcode3 to xcode4?
I am reading article at http://iphonedevelopment.blogspot.com/2009/04/opengl-es-from-ground-up-part-2-look-at.html and author offers his OpenGLES code template, but I can't get it working in new xcode4, seems it have different format. Any suggestions?

Thanks in advance :)

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

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

发布评论

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

评论(2

回忆凄美了谁 2024-10-17 23:00:24

我遇到了同样的问题,这里列出了使 xcode 3 模板与 xcode 4 兼容所需进行的更改:

首先,您必须将模板移动到新目录:

/YourUserDirectory/Library/Developer/Xcode/Templates /File Templates

(以前是 /Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/File Templates)

然后您需要:

  • 将模板从“*.pbfiletemplate”重命名为“.xctemplate”,
  • 将 class.h 重命名为 < code>___FILEBASENAME___.h(class.m 可以保持不变)
  • 在所有文件中将 «FILEBASENAMEASIDENTIFIER» 更改为 ___FILEBASENAMEASIDENTIFIER___
  • 另外所有关键字,如 «FILENAME»、«PROJECTNAME»、需要替换为 ___FILENAME______PROJECTNAME___
  • «OPTIONALHEADERIMPORTLINE» 需要替换为 #import "___FILEBASENAME___.h"

希望这会有所帮助,
文森特

I had the same problem, here is a list of the changes you need to do to make your xcode 3 templates works with xcode 4 :

First you have to move your templates to a new directory :

/YourUserDirectory/Library/Developer/Xcode/Templates/File Templates

(previously it was /Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/File Templates)

Then you need to :

  • rename your templates from "*.pbfiletemplate" to ".xctemplate"
  • rename class.h into ___FILEBASENAME___.h (the class.m can stay unchanged)
  • inside all of your files change «FILEBASENAMEASIDENTIFIER» into ___FILEBASENAMEASIDENTIFIER___
  • Additonaly all the key words like «FILENAME», «PROJECTNAME», need to be replaced by ___FILENAME___, ___PROJECTNAME___, etc
  • «OPTIONALHEADERIMPORTLINE» needs to be replaced by #import "___FILEBASENAME___.h"

Hope this helps,
Vincent

陌上青苔 2024-10-17 23:00:24

在 XCode 4 最终确定之前,这可能没有多大意义。但是,您可以并行安装 XCode 3 和 4,并且 XCode 项目格式在它们之间兼容。因此,我只需在 XCode 3 中安装模板,创建新项目,然后在 XCode 4 中打开结果。

Until XCode 4 is finalised, there's probably not much point in this. However, you can side by side install XCode 3 and 4 and the XCode project format is compatible between them. Hence, I'd just install the template in XCode 3, create your new project(s), then open the results in XCode 4.

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