次のように、「Person」オブジェクトと「Product」オブジェクトを 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" & "product"を使用していることがわかります。domainIdentifier
しかし、アプリに戻ったときにこれらの s にアクセスするにはどうすればよいでしょうか?
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
}