gpt4 book ai didi

cocoa - 如何在 NSOpenPanel 中将 "Open"更改为 "Select"?

转载 作者:行者123 更新时间:2023-12-03 16:01:36 26 4
gpt4 key购买 nike

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

最佳答案

添加这一行:

[openDlg setPrompt:@"Select"];

关于cocoa - 如何在 NSOpenPanel 中将 "Open"更改为 "Select"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5621513/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com