Mac App的Focus Finder

时间:2012-03-18 16:43:33

标签: objective-c xcode focus finder

我的mac应用程序中有一个更新程序,它会自动下载带有最新版本应用程序的dmg文件。现在它也可以打开这个文件,但是如何关注Finder窗口呢?否则,用户不会知道狗文件被打开,因为它在后台。 这是我下载和打开文件的代码:

NSData *fileData = [NSData dataWithContentsOfURL:
                       [NSURL URLWithString:@"http:// ... .dmg"]];
    if([fileData writeToFile:@"/file.dmg" atomically:NO]) {
        [[NSWorkspace sharedWorkspace] openFile:@"file.dmg"];
        // Here I want to focus the new Finder window which has been opened by the code above
exit(1);
    }

2 个答案:

答案 0 :(得分:5)

你可以使用

[[NSWorkspace sharedWorkspace] openFile:myFile withApplication:@"Finder"];

答案 1 :(得分:2)

您需要使用activateFileViewerSelectingURLs:documentation)中的NSWorkspace方法。

您将在GitHub上的showinfinder项目中找到如何使用它。