Reputation: 49
I have a long title for my app that looks nice in Settings, but doesn't fit under my app icon. Is there a way to have a different Bundle Display Name for under my icon?
Upvotes: 1
Views: 142
Reputation: 4928
Short answer: NO
The difference between CFBundleDisplayName and CFBundleName is that CFBundleDisplayName is localizable.
App title, notifications and settings all read from CFBundleDisplayName
See techninal details here: https://developer.apple.com/library/content/qa/qa1892/_index.html
Upvotes: 1