I am working on core spotlight feature of ios 9. When type any search text on spotlight search, app contents display in below list and we can navigate to respective application when tap on it.
Below delegate is call when tap on content.
-(BOOL)application:(UIApplication *)application continueUserActivity:( NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray * _Nullable))restorationHandler
{
}
I need search text which type on spotlight search.
Example - Suppose I type 'Music' in spotlight search ,musical app list display in below list.On tap on it,navigates to musical app .
How do I retrieve 'Music' in my application ? Please reply if any one has idea about it.