xcode - How to include more search items in iOS spotlight search -


i created project, settings name, say: abcxyz. when use ios search app (swipe down in main menu), type xyz, app doesn't appear.

what have include in xcode project in order more option in search? like, type a, type x, show app. in case of abc-xyz also.

additional, want user can search our company name also. company1, search company1 , show our company's apps (in case abcxyz).

you can't since spotlight's search mechanism built-in in ios. when user types keyword, ios search following 2 names of installed apps:

  • the app's bundle display name (the name used in home screen).
  • the (usually) longer name used in app store.

when searching, ios case-insensitive match beginning of each "word" in name. example, if app called abcxyz, both a, abc , abcx match name, not xyz. however, it's worth pointing out each "component" of camel-case styled name treated different word. if app named abcxyz, keyword of abc , xyz both match app.

afaik there no way alter search mechanism or add new keywords app. can optimize aforementioned 2 names used searching. example, can include relevant information in "app store name," wouldn't recommend abuse it.


Comments

Popular posts from this blog

angularjs - ADAL JS Angular- WebAPI add a new role claim to the token -

php - CakePHP HttpSockets send array of paramms -

node.js - Using Node without global install -