mac 中启动另外一个程序并且将该窗口置于最前面

来源:互联网 发布:yy多功能pc协议源码 编辑:程序博客网 时间:2024/06/13 05:12
- (void)launchSoftWithBundleID:(NSString *)softPath{    NSBundle *softBundle = [NSBundle bundleWithPath:softPath];    NSString *bundleID = [softBundle bundleIdentifier];    //运行程序    NSTask *softTask = [[NSTask alloc] init];    [softTask setLaunchPath:softPath];    [softTask launch];    //得到运行的程序,并置于最前面    NSArray *array = [NSRunningApplication runningApplicationsWithBundleIdentifier:bundleID];    if ([array count] > 0)    {        NSRunningApplication *runningApp = [array objectAtIndex:0];        [runningApp activateWithOptions:NSApplicationActivateIgnoringOtherApps];    }}
阅读全文
0 0
原创粉丝点击