5

我正在使用 CoreSpotlight api 和NSUserActivityapi 的组合来索引应用程序内容。一切顺利,直到我点击搜索结果。在 continueUserActivity 方法中与 userActivity 一起传递的 userInfo 仅包含一项,即kCSSearchableItemActivityIdentifier。我的其他自定义键为零。

这是我用于索引项目的代码..

class MyTestViewController:UIViewController{
     viewDidLoad(){
        searchHandler = SearchHandler()
        searchHandler.index(items)
     }
 }

 class  SearchHandler{
         var activity: NSUserActivity!

         func index(items:[Item]){
            for item in items{
         let attributeSet = getSearchItemAttribute(item)
                if let attributeSet =  attributeSet{
                    let searchableItem = CSSearchableItem(uniqueIdentifier: item.uniqueId, domainIdentifier:itemType.groupId(), attributeSet: attributeSet)
                    searchableItem.expirationDate = item.expirationDate
                    addToSpotlight([searchableItem])
                }

            activity = NSUserActivity(activityType: searchPrivacy.activity())
            activity.delegate = delegate

            //meta data
            activity.title = item.title

            var userInfoDic = [NSObject:AnyObject]()
            userInfoDic["indexItemType"] = itemType.rawValue
            userInfoDic["address"] = item.title
            activity.userInfo = userInfoDic

            if item.expirationDate != nil { activity.expirationDate = item.expirationDate! }
            if item.keywords != nil { activity.keywords = item.keywords! }
            activity.contentAttributeSet = attributeSet

            //eligibility
            activity.eligibleForHandoff = false
            activity.eligibleForSearch = true
            activity.eligibleForPublicIndexing = true
            activity.requiredUserInfoKeys = Set(["indexItemType","address"])

            activity.becomeCurrent()
            }
 }

 private  func getSearchItemAttribute(item:Item) ->CSSearchableItemAttributeSet?{
    if item.contentType != nil { // add an entry to core spot light
        let attributeSet = CSSearchableItemAttributeSet(itemContentType: item.contentType!)
        attributeSet.relatedUniqueIdentifier = item.uniqueId
        HALog.i("item.uniqueId= \(item.uniqueId)")
        attributeSet.title = item.title
        attributeSet.thumbnailData = item.thumbnailData
        attributeSet.thumbnailURL = item.thumbnailUrl
        attributeSet.rating = item.ratings
        attributeSet.ratingDescription = item.ratingDescription
        attributeSet.contentDescription = item.contentDescription
        return attributeSet
    }
    return nil
}

private  func addToSpotlight(searchableItems:[CSSearchableItem]) {

    CSSearchableIndex.defaultSearchableIndex().indexSearchableItems(searchableItems) { (error) -> Void in
        if let error = error {
            HALog.e("Deindexing error: \(error.localizedDescription)")
        } else {
            HALog.i("Search item successfully indexed!")
        }
    }

   }
}

每当我尝试访问 userInfo 中的 indexItemType 或地址键时,它总是为零。

我已经尝试了这些线程的所有解决方案:

  1. iOS 9 - NSUserActivity 用户信息属性显示为空

  2. http://helpprogramming.xyz/question/31328032/ios-9-nsuseractivity-userinfo-property-showing-null

以上都没有解决我的问题。我目前正在使用 Xcode 7 和 iOS 9。

4

2 回答 2

2

如果您使用 CSSearchableIndex,那么您只会在 userInfo 中收到 kCSSearchableItemActivityIdentifier。要在 userInfo 中设置和检索自定义属性,您应该只将 userActivity 设置为 becomeCurrent。

存根你对 CSSearchableIndex 的调用,看看它是否有效(你还应该确保你的 nsuseractivity 对象是你的视图/模型上的一个强属性,因为它可以在它有机会保存 userInfo 之前被释放)。

以下线程上的信息对我有帮助:

https://forums.developer.apple.com/thread/9690

于 2015-10-20T07:41:29.027 回答
2

我在这里遇到了同样的问题,我搜索了很多对我不起作用的答案......幸运的是我在ios-9-tutorial-series-search-api中找到了我的解决方案

我建议您阅读以上所有内容。我会给你两个替代解决方案:

  1. 使用 NSUserActivity 而不是 CSSearchableItem:当你完成数据设置时,调用userActivity.becomeCurrent,然后你可以在聚光灯下找到你的数据(还有两件事:我没有 iOS 9 设备,所以只在 iOS 10 设备中测试,以及文章我上面提到NSUserActivity is limited to one activity per navigation point过,但我没有这样的问题......)

  2. 使用 CSSearchableItem,将 设置为uniqueIdentifier包含您的自定义用户信息的 JSON 字符串。

注意:不要索引 CSSearchableItem 并同时调用userActivity.becomeCurrent两者,否则您将得到两个 Spotlight 结果。其中之一是com.apple.corespotlightitem,另一个是您的自定义活动类型

于 2017-04-01T02:37:00.313 回答