I've downloaded Xcode 7 beta and found a new type of extension there. On WWDC 2015 nothing was said about it. It's called Spotligt extension. When Spotlight Extension in iOS 9 is called and for what it's used?
相关问题
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
- “Zero out” sensitive String data in Swift
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- Using if let syntax in switch statement
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- xcode 4 garbage collection removed?
- Unable to process app at this time due to a genera
- Enum with associated value conforming to CaseItera
From iOS 9.0:
and
It's basically an extension to provide content for the Spotlight search in iOS.
My understanding is individual app can expose a series of 'Activities' that contains keywords and can be indexed by OS. iOS would rank those activities based on usage on this device and other devices(which has this app installed) and expose the results when user starts typing keyword in OS spotlight. When clicking into that search results the OS would call the app's activities with certain key values so each app provides additional context(e.g: Jump to a specific song, open a certain document).