Mac OS X应用程序Info.plist文件是什么样的?我只需要最低限度,所以我有:
谢谢!
答案 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中找到更多密钥。