NSOpenPanel表

时间:2012-02-09 21:00:45

标签: macos cocoa nsopenpanel

这是我将打开的面板显示为浮动窗口的方式。

有人可以帮助我将面板作为工作表运行吗?窗口对象是mWindow。我使用的大部分标准代码都是折旧的。

NSOpenPanel *openPanel = [NSOpenPanel openPanel];
NSArray* fileTypes = [[NSArray alloc] initWithObjects:@"mp3", @"mp2", @"m4a", nil];

[openPanel setAllowsMultipleSelection: NO];
[openPanel setCanChooseDirectories:NO];
[openPanel setCanCreateDirectories:NO];
[openPanel setCanChooseFiles:YES];
[openPanel setAllowedFileTypes:fileTypes];

NSString * filePath = @"~/Desktop";
filePath = [filePath stringByExpandingTildeInPath];
NSURL *fileURL = [NSURL fileURLWithPath:filePath]; 
[openPanel setDirectoryURL:fileURL];

NSInteger clicked = [openPanel runModal];
if (clicked == NSFileHandlingPanelOKButton) {
    for (NSURL *url in [openPanel URLs]) {
        NSString *urlString = [url path];
        [input setStringValue:urlString];
        NSString *myString = [input stringValue];
        NSString *oldPath = [myString lastPathComponent];
        [inputDisplay setStringValue:oldPath];
    }
}

1 个答案:

答案 0 :(得分:13)

非常简单,它就在文档中,尽管你可能错过了它,因为相关的方法实际上是NSSavePanel的一部分,NSOpenPanel继承了它。

假设你的目标是Snow Leopard或更好,因此可以访问块,只需用这个替换你的runModal调用就可以了:

[openPanel beginSheetModalForWindow:mWindow completionHandler:^(NSInteger result) {

    if (result == NSFileHandlingPanelOKButton) {

        // Do something.
    }
}];