创建应用程序 plist

发布于 2024-11-14 20:49:44 字数 122 浏览 1 评论 0原文

Mac OS X Application Info.plist 文件是什么样的?我只需要最低限度的要求,这样我就可以:

  • 启动可执行文件
  • 有一个图标

谢谢!

What would a Mac OS X Application Info.plist file look like? I only need the bare minimum, so that I have:

  • Launches an executable
  • Has an icon

Thanks!

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

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

发布评论

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

评论(1

陌伤浅笑 2024-11-21 20:49:44

这是真正的最低要求:

<?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>CFBundleExecutable</key>
  <string>ExecutableFileName</string>
  <key>CFBundleIconFile</key>
  <string>AppIcon</string>
</dict>
</plist>

建议还包含一个 CFBundleIdentifier 键。这样系统就可以识别您的应用程序。我真的建议你把它包括在内。


您可以在 信息属性列表关键参考

This is the real, bare minimum:

<?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>CFBundleExecutable</key>
  <string>ExecutableFileName</string>
  <key>CFBundleIconFile</key>
  <string>AppIcon</string>
</dict>
</plist>

It is recommended to include a CFBundleIdentifier key also. This way the system can identify your application. I really recommend you include it.


You can find more keys in the Information Property List Key Reference.

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