ios 9 中的 Spotlight 扩展

Spotlight extension in ios 9

我下载了 Xcode 7 beta 并在那里找到了一种新的扩展。在 WWDC 2015 上什么也没说。它被称为 Spotligt 扩展 。当 Spotlight Extension in iOS 9 被调用时,它的用途是什么?

来自iOS 9.0

App Search in iOS 9 gives users great new ways to access information inside of your app, even when it isn’t installed. When you adopt iOS 9 Search, users can access activities and content deep within your app through Handoff, Siri Reminders, and Search results.

Spotlight extension points:

  • Use the app indexing extension point to index data in your app.
  • Use the Index Maintenance extension point to support the reindexing of app data without launching the app.

它基本上是为 iOS 中的 Spotlight 搜索提供内容的扩展。

我的理解是个别应用程序可以暴露一系列包含关键字的 'Activities' 并且可以被 OS 索引。 iOS 将根据此设备和其他设备(安装了此应用程序)的使用情况对这些活动进行排名,并在用户开始在 OS 聚光灯下输入关键字时公开结果。当点击该搜索结果时,OS 会调用具有特定键值的应用程序活动,以便每个应用程序提供额外的上下文(例如:跳转到特定歌曲,打开特定文档)。