WIP: corespotlight

This commit is contained in:
John Estropia
2016-01-08 13:29:05 +09:00
parent 16daddbcc2
commit 42c708e52b
3 changed files with 90 additions and 0 deletions

View File

@@ -25,6 +25,8 @@
import Foundation
import CoreData
import CoreSpotlight
import MobileCoreServices
#if USE_FRAMEWORKS
import GCDKit
#endif
@@ -56,6 +58,7 @@ public final class AsynchronousDataTransaction: BaseDataTransaction {
)
self.isCommitted = true
let group = GCDGroup()
group.enter()
self.context.saveAsynchronouslyWithCompletion { (result) -> Void in
@@ -65,6 +68,38 @@ public final class AsynchronousDataTransaction: BaseDataTransaction {
group.leave()
}
group.wait()
guard #available(iOS 9.0, *) else {
return
}
let attributeSet = CSSearchableItemAttributeSet(itemContentType: kUTTypeJSON as String)
attributeSet.title = nextItem.0
attributeSet.contentDescription = nextItem.1
let item = CSSearchableItem(
uniqueIdentifier: nextItem.0,
domainIdentifier: "jp.eureka.sample",
attributeSet: attributeSet
)
CSSearchableIndex.defaultSearchableIndex().indexSearchableItems(
[item],
completionHandler: { (error) -> Void in
//...
}
)
for case (let object as CoreSpotlightSearchableObject) in self.context.insertedObjects {
object.coreSpotlightIndexValue
}
// public var insertedObjects: Set<NSManagedObject> { get }
// public var updatedObjects: Set<NSManagedObject> { get }
// public var deletedObjects: Set<NSManagedObject> { get }
// public var registeredObjects: Set<NSManagedObject> { get }
}
/**