1

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

#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 没有成为焦点。我究竟做错了什么?

4

1 回答 1

5

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

另外 activateWithOptions: 方法有以下注意事项:

如果应用程序已退出,或者不是可以激活的应用程序类型,此方法将返回 NO 。

于 2015-08-05T18:41:22.400 回答