Диалоговое окно «Открыть файл» - PullRequest
8 голосов
/ 29 октября 2009

Я изучаю Objective-C и пытаюсь разработать простое приложение на молнии, но я остановился, когда мне нужно вставить кнопку в диалоговом окне, и эта кнопка открывает диалог открытия файла, который выберет файл для сжатия , но я никогда не использовал диалог открытия файла, тогда как я могу открыть его и сохранить выбранный пользователем файл в char*? Благодаря.

Помните, что я использую GNUstep (Linux).

Ответы [ 3 ]

20 голосов
/ 03 ноября 2012

Спасибо @Vlad the Impala Я обновляю ваши ответы для людей, которые используют OS X v10.6 +

// Create the File Open Dialog class.
NSOpenPanel* openDlg = [NSOpenPanel openPanel];

// Enable the selection of files in the dialog.
[openDlg setCanChooseFiles:YES];

// Multiple files not allowed
[openDlg setAllowsMultipleSelection:NO];

// Can't select a directory
[openDlg setCanChooseDirectories:NO];

// Display the dialog. If the OK button was pressed,
// process the files.
if ( [openDlg runModal] == NSOKButton )
{
    // Get an array containing the full filenames of all
    // files and directories selected.
    NSArray* urls = [openDlg URLs];

    // Loop through all the files and process them.
    for(int i = 0; i < [urls count]; i++ )
    {
        NSString* url = [urls objectAtIndex:i];
        NSLog(@"Url: %@", url);
    }
}
16 голосов
/ 30 ноября 2009

Если кому-то еще нужен этот ответ, вот он:

 int i;
  // Create the File Open Dialog class.
  NSOpenPanel* openDlg = [NSOpenPanel openPanel];

  // Enable the selection of files in the dialog.
  [openDlg setCanChooseFiles:YES];

  // Multiple files not allowed
  [openDlg setAllowsMultipleSelection:NO];

  // Can't select a directory
  [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( i = 0; i < [files count]; i++ )
   {
   NSString* fileName = [files objectAtIndex:i];
   }
2 голосов
/ 02 июля 2016

Для людей, которые используют OS X v10.10 +, замените в Far Jangtrakool ответ:

if ( [openDlg runModal] == NSOKButton )

по

if ( [openDlg runModal] == NSModalResponseOK )
...