我想使用我的应用程序名称的较短版本来显示在图标下。我已经读到 Bundle Name 是显示这个缩短名称的值。我将 Bundle Name (CFBundleName) 添加到我的 info.plist,但我的应用程序名称仍根据 Bundle 显示名称 (CFBundleDisplayName) 显示。我在这里错过了什么吗?提前致谢。
问问题
164 次
1 回答
0
尝试使用 metadata->title 键:
<?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>items</key>
<array>
<dict>
<key>assets</key>
<array>
<dict>
<key>kind</key>
<string>software-package</string>
<key>url</key>
<string>http://www.example.es/YourAppBundle.ipa</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>XXXXXXXXXX</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>YourAppName</string>
</dict>
</dict>
</array>
</dict>
</plist>
于 2012-06-04T08:08:49.567 回答