5

これが、開いているパネルをフローティングウィンドウとして表示する方法です。

誰かがパネルをシートとして実行するのを手伝ってくれますか?ウィンドウオブジェクトは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];
    }
}
4

1 に答える 1

13

非常に単純です。関連するメソッドは実際にはNSOpenPanelが継承するNSSavePanelの一部であるため、見逃しているかもしれませんが、ドキュメントにあります。

Snow Leopard以上をターゲットにしていて、ブロックにアクセスできると仮定すると、runModal呼び出しを次のように置き換えるだけです。

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

    if (result == NSFileHandlingPanelOKButton) {

        // Do something.
    }
}];
于 2012-02-09T21:11:42.590 に答える