Хорошо, я понял, что я для себя.
Реализуйте следующий метод в классе. Установите класс как UIDelegate
для WebView
в Интерфейсном Разработчике.
(Как использовать NSOpenPanel
Я нашел здесь:
http://ekle.us/index.php/2006/12/displaying_a_file_open_dialog_in_cocoa_w
) * +1010 *
- (void)webView:(WebView *)sender runOpenPanelForFileButtonWithResultListener:(id < WebOpenPanelResultListener >)resultListener
{
// Create the File Open Dialog class.
NSOpenPanel* openDlg = [NSOpenPanel openPanel];
// Enable the selection of files in the dialog.
[openDlg setCanChooseFiles:YES];
// Enable the selection of directories in the dialog.
[openDlg setCanChooseDirectories:NO];
// Display the dialog. If the OK button was pressed,
// process the files.
if ( [openDlg runModalForDirectory:nil file:nil] == NSOKButton )
{
// Get an array containing the full filenames of all
// files and directories selected.
NSArray* files = [openDlg filenames];
// Loop through all the files and process them.
//for(int i = 0; i < [files count]; i++ )
{
NSString* fileName = [files objectAtIndex:0]; //i];
// Do something with the filename.
[resultListener chooseFilename:fileName];
}
}
}
пс. используйте [resultListener chooseFilenames:...]
для нескольких файлов