gpt4 book ai didi

objective-c - -[NSRunningApplication activateWithOptions :] not working

转载 作者:行者123 更新时间:2023-12-03 16:53:54 26 4
gpt4 key购买 nike

我正在尝试创建一个程序来专注于某个应用程序(如果它已启动)。这是我的代码:

#import <Cocoa/Cocoa.h>
#import <stdio.h>

int main() {
// activate Firefox
NSArray *apps = [NSRunningApplication runningApplicationsWithBundleIdentifier: @"org.mozilla.firefox"];

if ([apps count] == 0) {
printf("no matching app\n");
return 1;
}

if (![apps[0] activateWithOptions: NSApplicationActivateAllWindows]) {
printf("failed to activate\n");
return 1;
}

return 0;
}

当我运行这个程序时,它打印出“激活失败”,并且 Firefox 没有成为焦点。我做错了什么?

最佳答案

只需使用 NSApplicationActivateIgnoringOtherApps 修饰符即可激活。工作正常。

另外 activateWithOptions: 方法有以下注释:

This method will return NO if the application has quit, or is not a type of application than can be activated.

关于objective-c - -[NSRunningApplication activateWithOptions :] not working,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31839290/

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