too*_*tik 11 macos cocoa cocoa-touch ios nsuseractivity
我正在尝试将自己的活动添加到osx 10.11上的Spotlight搜索结果中.但经过多次尝试后,我无法通过关键字搜索而不是通过标题搜索进入Spotlight搜索结果.
{
self.userActivity = [[NSUserActivity alloc] initWithActivityType:@"Reverse DNS keyword"];
self.userActivity.title = @"Some title";
self.userActivity.keywords = [NSSet setWithArray: @[@"Some keywords"]];
self.userActivity.eligibleForSearch = YES;
self.userActivity.eligibleForHandoff = YES;
self.userActivity.eligibleForPublicIndexing = YES;
self.userActivity.userInfo = @{@"name" : @"Some name"};
self.userActivity.delegate = self;
self.userActivity.requiredUserInfoKeys =[NSSet setWithArray: @[@"name"]];
self.userActivity.needsSave = YES;
[self.userActivity becomeCurrent];
NSApp.userActivity = self.userActivity;
}
- (void)userActivityWillSave:(NSUserActivity *)userActivity
{
userActivity.userInfo = @{@"name" : @"Some name"};
}
Run Code Online (Sandbox Code Playgroud)
我还使用来自initWithActivityType:参数的NSUserActivityTypes数组和项更新了Info.plist
另外我注意到在Console中有时出现消息:
16/09/2016 13:14:49.731 Caching encoded userInfo to use until we are marked dirty again (UAUserActivity.m #1567)
16/09/2016 13:14:49.731 Returning cached encoded userInfo (UAUserActivity.m #1508)
Run Code Online (Sandbox Code Playgroud)
经过一番搜索,最终我在TN2416中找到了我的问题的答案:
**Are these new Search APIs available on OS X?**
CoreSpotlight and the search functionality of NSUserActivity are not supported on OS X. However, web search results may be shown on OS X.
Run Code Online (Sandbox Code Playgroud)