0

我正在尝试构建本机消息传递测试项目,但它一直无法使用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 上。

4

1 回答 1

1

如评论中所述,SFExtensionMessageKey仅适用于 macOS 11+,不适用于 iOS 或更早的 macOS 版本。

于 2021-01-09T17:59:23.757 回答