iPhone 应用程序模板中的自定义模板徽标和描述

发布于 2024-08-21 11:26:28 字数 344 浏览 6 评论 0原文

我正在尝试创建自定义“应用程序模板”。

我尝试学习“如何创建模板?”来自《Cocos2d iPhone游戏开发》的示例模板。

我面临的问题如下。

  • Cocos2d 自定义应用程序模板有徽标 - “创建新项目”屏幕。 (我不知道如何放置应用程序模板的默认徽标:每个模板都有不同的徽标,例如实用程序应用程序、基于导航的应用程序、基于窗口的应用程序等)

  • 每个应用程序模板在“创建新项目”底部有描述 (例如,基于导航的应用程序将在底部有说明。) 我的问题是从哪里放置有关应用程序模板的描述?

I am trying to create a custom "Application template".

I tried to learn, "How to create template?" from the sample templates of "Cocos2d iPhone Game development".

The problems that I am facing are as follows.

  • Cocos2d custom application templates have logo - "create new project" screen. (I don't know how to place the default logo of the Application template: each template has different logo, like utility application, navigation based application, window based application etc.)

  • Each application template has description at bottom in "create new project"
    (Like, navigation-based application will have description at the bottom.)
    My problem is from where to put this description regarding the application template?

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

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

发布评论

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

评论(1

°如果伤别离去 2024-08-28 11:26:28

如果您在 /Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Project Templates 中找到模板,然后在 .xcodeproj 文件上显示包内容,您将看到它包含 TemplateIcon.icns。如果您添加/修改此文件,它将出现在您的项目模板中。

另外,根据描述,如果您在 .xcodeproj 文件上执行“显示包内容”,您将看到一个名为 TemplateInfo.plist 的文件。它包含一些如下所示的代码:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
  <dict>
    <key>Description</key>
    <string>This is the description for the template</string>
  </dict>
</plist>

If you locate the template in /Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Project Templates then Show Package Contents on the .xcodeproj file you will see it contains a TemplateIcon.icns. If you add/modify this file then it will appear in your project templates.

Also, with the description, again if you do the Show Package Contents on the .xcodeproj file you will see a file called TemplateInfo.plist. It contains some code that looks like this:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
  <dict>
    <key>Description</key>
    <string>This is the description for the template</string>
  </dict>
</plist>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文