使用Spotlight从NSUserActivity访问domainIdentifier

时间:2015-12-14 13:41:34

标签: ios swift corespotlight nsuseractivity

我正在编制索引' Person'和'产品'像这样的对象进入Spotlight:

// Person
let personItem = CSSearchableItem(uniqueIdentifier: personID, domainIdentifier: "person", attributeSet: attributeSet)                

CSSearchableIndex.defaultSearchableIndex().indexSearchableItems([personItem]) { (error: NSError?) -> Void in
    if let error = error {
        print("Indexing error: \(error.localizedDescription)")
    } else {
        print("person added to spotlight")
    }
}


// Product
let productItem = CSSearchableItem(uniqueIdentifier: productID, domainIdentifier: "product", attributeSet: attributeSet)                

CSSearchableIndex.defaultSearchableIndex().indexSearchableItems([productItem]) { (error: NSError?) -> Void in
    if let error = error {
        print("Indexing error: \(error.localizedDescription)")
    } else {
        print("product added to spotlight")
    }
}

您可以看到我正在使用domainIdentifier s:" person" &安培; "产品&#34 ;.但是当我回到应用程序时,我将如何访问这些domainIdentifier

func application(application: UIApplication, continueUserActivity userActivity: NSUserActivity, restorationHandler: ([AnyObject]?) -> Void) -> Bool {
    if userActivity.activityType == CSSearchableItemActionType {

        // if product do this
        // if person do that

    }

    return true
}

1 个答案:

答案 0 :(得分:2)

据我所知,在CoreSpotlight您无法直接访问domainIdentifier。你拥有的是uniqueIdentifier,所以你可以使用某种前缀来处理它。要获取标识符,您可以使用:

if let itemActivityIdentifier = userActivity.userInfo?["kCSSearchableItemActivityIdentifier"] {

}

AppDelegate