1
私は次のエラーを取得しています
で宣言されていない識別子NSOpenPanelの使用:エラー:Xcodeの
Use of undeclared identifier NSOpenPanel
NSOpenPanel *panel = [NSOpenPanel openPanel];
[panel setCanChooseFiles:NO];
[panel setCanChooseDirectories:YES];
[panel setAllowsMultipleSelection:YES]; // yes if more than one dir is allowed
NSInteger clicked = [panel runModal];
if (clicked == NSFileHandlingPanelOKButton)
{
for (NSURL *url in [panel URLs])
{
// do something with the url here.
}
}
ファイルピッカーを対物レンズで開くには? – Prabhu
iOSの下にファイルピッカーがありません。 – shallowThought
どのようにファイルをプログラムでブラウズするのですか? – Prabhu