在我的应用程序中,我需要显示选择文件对话框,我正在使用允许选择文件的 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 资源.