打开文件对话框

Nat*_*pos 10 user-interface dialog objective-c openfiledialog gnustep

我正在学习Objective-C并尝试开发一个简单的拉链应用程序,但是我现在停止了,当我需要在我的对话框中插入一个按钮时,这个按钮打开一个打开文件对话框,它将选择要压缩的文件,但是从未使用过打开文件对话框,然后我如何打开它并将用户选择的文件存储在char*?谢谢.

请记住,我正在使用GNUstep(Linux).

Far*_*ool 21

谢谢@Vlad 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);
    }
}
Run Code Online (Sandbox Code Playgroud)


Vla*_*ala 18

如果其他人需要这个答案,这里是:

 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];
   }
Run Code Online (Sandbox Code Playgroud)