1

In iOS 9, is there a way to give spotlight a list of keywords by which users can search for a specific app?

Example scenario: App Title (as displayed on spring board): "Photos," but User searches for "Pictures" or "Photographs."

If not, are the keywords as listed in the App Store used index the app on the device?

Jake Chasan
  • 6,290
  • 9
  • 44
  • 90

2 Answers2

1

You can achieve this by using either NSUserActivity or Core Spotlight framework.

Keywords property of NSUserActivity class can be used. OR In Core Spotlight framework, keywords property of CSSearchableItemAttributeSet can be used.

PGDev
  • 23,751
  • 6
  • 34
  • 88