创建一个应用程序plist

时间:2011-06-12 17:33:30

标签: plist

Mac OS X应用程序Info.plist文件是什么样的?我只需要最低限度,所以我有:

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

谢谢!

1 个答案:

答案 0 :(得分:5)

这是真正的,最低限度的:

<?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键。这样系统就可以识别您的应用程序。我真的建议你加入它。


您可以在Information Property List Key Reference中找到更多密钥。