我想使用较短版本的应用名称显示在图标下方。我已经读过Bundle Name是显示这个缩短名称的值。我将Bundle Name(CFBundleName)添加到我的info.plist中,但我的应用程序名称仍然根据Bundle Display Name(CFBundleDisplayName)显示。我在这里错过了什么吗?提前谢谢。
答案 0 :(得分:0)
尝试使用元数据 - >标题键:
<?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>