iOS9退出了CoreSpotlight框架,这个框架可以为iOS的搜索提供一些App内部的数据,能够使我们在iPhone上下拉出现得搜索框中,搜索我们使用的App中的内容(当然App必须做了适配我们才能搜索到)。
下面借用WWDC Session 709 keynote的一张截图说明其中的关系:
对于CoreSpotlight可以类比NSUserDefault,都是全局的存储空间。不同的是CoreSpotlight是系统的存储空间,每个App都能访问(可能这个访问有限制,目前还没有时间研究),但是NSUserDefault是每个App私有的。另外对于存储的内容CoreSpotlight存储的是item,即CSSearchableItem,而每个CSSearchableItem又有许多属性,这些属性是通过CSSearchableItemAttributeSet进行设置。具体都有神马属性,大家自己去看头文件吧。
下面写一下简单得步骤:
1 引入CoreSpotlight.framework
2 创建CSSearchableItemAttributeSet、CSSearchableItem
3 调用CSSearchableIndex.defaultSearchableIndex()的相关的方法对item进行操作。
由于本人水平有限,只找到了添加、删除itme的操作,并没有找到更新itme的方法,如果谁清楚了,麻烦告知一下。
下面贴出本人测试的一个简单例子的代码:
import UIKit @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? // 从搜索结果点击的时候将会调用这个方法 func application(application: UIApplication, continueUserActivity userActivity: NSUserActivity, restorationHandler: ([AnyObject]?) -> Void) -> Bool { // 这里能够获取到点击搜索结果的identifier 但是不清楚是不是应该这样做 let identifier = userActivity.userInfo?["kCSSearchableItemActivityIdentifier"] print("continueUserActivity \(identifier!)") return true } }
// // ViewController.swift // SpotlightTest // // Created by mxy on 15/6/21. // Copyright © 2015年 mxy. All rights reserved. // import UIKit import CoreSpotlight class ViewController: UIViewController { let identifier = "com.mxy.test.identifier" var index = 1 // 用于标识添加的itme override func viewDidLoad() { super.viewDidLoad() CSSearchableIndex.defaultSearchableIndex().deleteAllSearchableItemsWithCompletionHandler { (error) -> Void in } } @IBAction func insertItem() { let attributeSet = CSSearchableItemAttributeSet(itemContentType: "com.mxy.test") attributeSet.title = "孟祥月 测试 mxy \(index)" attributeSet.contentDescription = "this 这里写点什么好呢 mxy \(index)" // 设置搜索结果的缩略图 不知道 为何就是不生效 我给应用程序添加了icon后,搜索结果那里显示的是icon attributeSet.thumbnailURL = NSURL(fileURLWithPath: NSBundle.mainBundle().pathForResource("aa", ofType: "png")!) attributeSet.thumbnailData = UIImagePNGRepresentation(UIImage(named: "aa")!) let item = CSSearchableItem(uniqueIdentifier: "\(identifier) \(index)", domainIdentifier: "mxy", attributeSet: attributeSet) let tmpItmes: [CSSearchableItem] = [item] CSSearchableIndex.defaultSearchableIndex().indexSearchableItems(tmpItmes) { (error) -> Void in } index++ } // 貌似是没有更新操作 所以只好根据identifier先删除,修改后再添加进去。 @IBAction func updateItem() { if index > 0 { let tmpIdentifier = "\(identifier) \(index - 1)" CSSearchableIndex.defaultSearchableIndex().deleteSearchableItemsWithIdentifiers([tmpIdentifier], completionHandler: { (error) -> Void in }) let attributeSet = CSSearchableItemAttributeSet(itemContentType: "com.mxy.test") attributeSet.title = "孟祥月 测试 mxy \(index - 1)" attributeSet.contentDescription = "this 这里写点更新后 mxy \(index - 1)" let item = CSSearchableItem(uniqueIdentifier: tmpIdentifier, domainIdentifier: "mxy", attributeSet: attributeSet) let tmpItmes: [CSSearchableItem] = [item] CSSearchableIndex.defaultSearchableIndex().indexSearchableItems(tmpItmes) { (error) -> Void in } } } @IBAction func deleteItem() { let identifiers = ["\(identifier) \(index)"] index-- if index <= 0 { return } CSSearchableIndex.defaultSearchableIndex().deleteSearchableItemsWithIdentifiers(identifiers) { (error) -> Void in } } }
在storyboard中只是添加了三个按钮,关联对应的操作。下面是演示,点击更新的时候会更新最后一个item的内容:
例子代码的下载地址:http://download.csdn.net/detail/mengxiangyue/8827141