使用 NSPerformService API 调用连续性相机服务

问题描述 投票:0回答:2

我正在尝试使用 BOOL NSPerformService(NSString *itemName, NSPasteboard *pboard); API 以编程方式调用

Continuity Camera (Mac OS)
服务,以便可以通过简单的按钮单击来挂钩该功能。需要作为
itemName
参数传入的连续性相机服务的名称是什么?

我无法从 com.apple.nsserivcescache.plist 文件中找到服务的名称,尽管从上下文菜单中,服务的名称是“拍照”和“扫描文档”。我不确定这些名称是否有效,因为它们始终与设备的名称(iPhone | iPad)相关联。

我尝试过的事情。

NSPerformSerice( @"Take Photo", [NSPasteboard generalPasteboard] );
NSPerformSerice( @"<Name of the iPhone> Take Photo", [NSPasteboard generalPasteboard] );
NSPerformSerice( @"<Name of the iPhone>/Take Photo", [NSPasteboard generalPasteboard] );

objective-c macos cocoa appkit
2个回答
1
投票

我写了一篇关于将连续性相机支持添加到您自己的应用程序的简短文章:https://thomas.zoechling.me/journal/2018/10/Continuity.html

您必须实现

NSServicesMenuRequestor
来指示您可以处理粘贴板中的图像:

override func validRequestor(forSendType sendType: NSPasteboard.PasteboardType?, returnType: NSPasteboard.PasteboardType?) -> Any? {
    if let pasteboardType = returnType,
        NSImage.imageTypes.contains(pasteboardType.rawValue) {
        return self
    } else {
        return super.validRequestor(forSendType: sendType, returnType: returnType)
    }
}

通过实现上述方法,当前第一响应者的菜单(例如按钮的菜单)将自动填充连续性相机菜单项。

该菜单的项目将启动 CC UI,然后当用户执行捕获时调用

readSelection(from: pasteboard)

您可以从那里阅读粘贴板内容:

func readSelection(from pasteboard: NSPasteboard) -> Bool {
    guard pasteboard.canReadItem(withDataConformingToTypes: NSImage.imageTypes) else { return false }
    guard let image = NSImage(pasteboard: pasteboard) else { return false }

    self.imageView.image = image
    return true
}

还应该可以控制 CC 相关菜单项的插入位置。有一个相关的 NSMenuItemImportFromDeviceIdentifier 常量,但我还没有弄清楚如何使用它。 (此 Twitter 线程中的一些上下文:

https://twitter.com/weichsel/status/1052980223891972096


0
投票
NSMenuItemImportFromDeviceIdentifier

常数。如果您通过 xib 或属性将其设置为 NSMenuItem 上的标识符,它将自动成为“相机连续性”菜单项。

    

© www.soinside.com 2019 - 2024. All rights reserved.