Как мне изменить «Открыть» на «Выбрать» в 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.
        }
    }

}

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

22
задан Ben Leggiero 8 August 2016 в 23:09
поделиться