gpt4 book ai didi

swift - 如何在 Swift/Cocoa 应用程序中获取 HID 设备列表?

转载 作者:可可西里 更新时间:2023-11-01 00:39:27 36 4
gpt4 key购买 nike

以下代码非常适合获取连接的 HID 设备列表:

import Foundation
import IOKit
import IOKit.usb
import IOKit.hid

private func createDeviceMatchingDictionary( usagePage: Int, usage: Int) -> CFMutableDictionary {
let dict = [
kIOHIDDeviceUsageKey: usage,
kIOHIDDeviceUsagePageKey: usagePage
] as NSDictionary

return dict.mutableCopy() as! NSMutableDictionary;
}

let manager = IOHIDManagerCreate(kCFAllocatorDefault, IOOptionBits(kIOHIDOptionsTypeNone));
let keyboard = createDeviceMatchingDictionary(usagePage: kHIDPage_GenericDesktop, usage: kHIDUsage_GD_Keyboard)

IOHIDManagerOpen(manager, IOOptionBits(kIOHIDOptionsTypeNone) )
IOHIDManagerSetDeviceMatching(manager, keyboard)

let devices = IOHIDManagerCopyDevices(manager)

if (devices != nil) {
print("Found devices!")
}
else {
print("Did not find any devices :(")
}

如果我采用相同的代码并将其放入 Cocoa 应用程序中,在 applicationDidFinishLaunching 中,则 devicesnil

如何在 Cocoa 应用程序中获取设备列表?

为什么 IOHIDManagerCopyDevices() 只有在 Cocoa 应用程序中运行时才会返回任何内容?我错过了什么?

最佳答案

啊哈!

XCode 项目中包含一个.entitlements 文件,您需要为com.apple.security.device.usb 添加一行并将其设置为"is"对于 Cocoa 项目。

关于swift - 如何在 Swift/Cocoa 应用程序中获取 HID 设备列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48070396/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com