Подтвердить что ты не робот

Как изменить "Открыть" на "Выбрать" в NSOpenPanel?

В моем приложении мне нужно показать диалог выбора файла, Я использую NSOpenPanel, который позволяет выбрать файл, код показан ниже,

- (IBAction)sendFileButtonAction:(id)sender{

    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:YES];

    // 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:i];
            [self log:fileName];

            // Do something with the filename.
        }
    }

}

все работает отлично, но я сталкиваюсь только с одной проблемой, открывая файл, он показывает кнопку "Открыть" и "Отмена", Есть ли способ переименовать кнопку "Открыть" на кнопку "Выбрать" или мне нужно использовать какой-то другой ресурс Cocoa.

4b9b3361

Ответ 1

Добавьте эту строку:

[openDlg setPrompt:@"Select"];

Ответ 2

Большое спасибо за вопрос и ответы. Я заменил устаревшие методы и, похоже, работает нормально. Извините, что я еще не знаю, как отредактировать ответы других людей (новичок в этом).

 - (IBAction)sendFileButtonAction:(id)sender{

    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:YES];

    // Change "Open" dialog button to "Select"
    [openDlg setPrompt:@"Select"];

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

        // Loop through all the files and process them.
        for( int i = 0; i < [files count]; i++ )
        {
            NSString* fileName = [files objectAtIndex:i];
            NSLog(@"file: %@", fileName);
            // Do something with the filename.
        }
    }
}