私はNSOpenPanelを持っています。しかし、私はそれをPDFファイルのみを選択可能にしたい。私はそのようなものを探しています:NSOpenPanel setAllowedFileTypes
// NOT WORKING
NSOpenPanel *panel;
panel = [NSOpenPanel openPanel];
[panel setFloatingPanel:YES];
[panel setCanChooseDirectories:YES];
[panel setCanChooseFiles:YES];
[panel setAllowsMultipleSelection:YES];
[panel setAllowedFileTypes:[NSArray arrayWithObject:@"pdf"]];
int i = [panel runModalForTypes:nil];
if(i == NSOKButton){
return [panel filenames];
}
私はsomebobyが解決策を持っていることを望みます。
ありがとうございました!コードはうまく機能します! –
このリークファイルタイプはありませんか? –
@MKatzキャッチをありがとう。 ARCがなければ、allocは必ずリリースされなければなりません。 arrayWithObjectsに変更します: –