gpt4 book ai didi

objective-c - 当 AXIsProcessTrusted() 为真时,重新启动 OS X 应用程序以执行 CGEventTapCreate()

转载 作者:搜寻专家 更新时间:2023-10-31 22:32:59 31 4
gpt4 key购买 nike

我的应用程序的功能之一是检测 keyDown 事件并对某些特定键进行操作。

所以,我使用CGEventTapCreate 来解决我的问题,我的代码是这样的:

   if let tap = CGEventTapCreate(.CGHIDEventTap, .HeadInsertEventTap, .Default, CGEventMask(1 << CGEventType.KeyDown.rawValue), callBack, nil) {
let runLoopSource = CFMachPortCreateRunLoopSource(kCFAllocatorDefault, tap, 0)
CFRunLoopAddSource(CFRunLoopGetCurrent(), runLoopSource, kCFRunLoopDefaultMode)
CGEventTapEnable(tap, true)
CFRunLoopRun()
}

此外,我处理流程信任的方式如下:

let options = [kAXTrustedCheckOptionPrompt.takeUnretainedValue() as NSString: false]
let processTrusted = AXIsProcessTrustedWithOptions(options)
if processTrusted {
// do CGEventTapCreate()
} else {
// check again 1s later
performSelector("checkMethod", withObject: nil, afterDelay: 1)
}

它将每秒调用一次,直到 processTrusted 为真。

然后奇怪的事情发生了:

When I run the app in Xcode and add trust Xcode in Privacy_Accessibility it all work fine. But When I run it with archive the app and Export as a Mac Application to my desktop, CGEventTapCreate() just not work.

之后我找到了这篇文章 Enable access for assistive devices programmatically on 10.9 ,它注意到我需要在 AXIsTrustedProcess() 之后重新启动应用程序。

您知道,告诉用户自己重新启动应用不是个好主意。所以我尝试以编程方式重新启动它,并将这些代码添加到 if processTrusted {} 中:

NSWorkspace.sharedWorkspace().launchApplication(NSProcessInfo.processInfo().processName)
NSApplication.sharedApplication().terminate(nil)

换句话说,当我在 Privacy_Accessibility 中勾选应用程序时,它会自动重新启动。

又来了一件奇怪的事情:

The app truly terminate and launch automatically. But when it finish relaunch, the app's Privacy_Accessibility is not tick.

这真的让我很困惑,我希望有人能告诉我处理进程信任和正确执行CGEventTapCreate()的正确方法。

谢谢!

最佳答案

轮询 AXIsProcessTrusted 并自动重新启动是一个不错的选择。用户经常对这个过程感到困惑,所以任何有助于简化他们的过程都是好的。

我很确定您启动的应用程序继承了您当前的权限,但没有方便的引用来支持它。我发现在使用 CGEventTap 调试应用程序时,我还必须为 Xcode 提供我的应用程序请求/要求的辅助功能权限。

但是您可以通过让系统为您启动您的应用来解决这个问题。尝试:

[NSTask launchedTaskWithLaunchPath:@"/bin/sh" arguments:[NSArray arrayWithObjects:@"-c", [NSString stringWithFormat:@"sleep 3 ; /usr/bin/open '%@'", [[NSBundle mainBundle] bundlePath]], nil]];

关于objective-c - 当 AXIsProcessTrusted() 为真时,重新启动 OS X 应用程序以执行 CGEventTapCreate(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35605949/

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