我正在尝试构建本机消息传递测试项目,但它一直无法使用Cannot find 'SFExtensionMessageKey' in scope
. 我该如何解决?
错误来自这段代码:
SafariWebExtensionHandler.swift
/*
See LICENSE folder for this sample’s licensing information.
Abstract:
Communicates with the extension running in Safari.
*/
import SafariServices
class SafariWebExtensionHandler: NSObject, NSExtensionRequestHandling {
// Receive a message from the JavaScript component of the Web Extension.
// Unpack the message, and then wrap in an object to send as the response.
func beginRequest(with context: NSExtensionContext) {
let item = context.inputItems[0] as? NSExtensionItem
let message = item?.userInfo?[SFExtensionMessageKey] // ERROR HERE
let response = NSExtensionItem()
response.userInfo = [ SFExtensionMessageKey: [ "Response to": message ] ] // AND ERROR HERE
context.completeRequest(returningItems: [response], completionHandler: nil)
}
}
它失败了,因为它在范围内找不到SFExtensionMessageKey
,但是当我查找它时,我发现它应该包含在Safari Services中。
当我直接在 Xcode 中检查 Safari 服务文件时,我没有看到任何提及SFExtensionMessageKey
——这可能只是我的困惑。但似乎这被重命名了,也许?
另一个想法是,我需要将 SafariServices 框架添加到各种应用程序目标的构建阶段(在“将二进制文件与库链接”部分下)。这也没有解决问题。
我在 Xcode 12.1 和 Swift 5 上。