Reputation: 1949
I'm working on a new iOS App, and it has a pretty long name, so I display a shortened version on the homescreen by chaing the Bundle Display Name
value in the Info.plist
file. However, I want to display the full name when the user searches for it through spotlight. How can I implement this?
Thanks
Upvotes: 8
Views: 3633
Reputation: 479
Your app can have two names:
Spotlight indexes both names for search. so you can have the longer name as your iTunesConnect name and the shortened version on the bundle display name. And both will be searchable.
Upvotes: 4