I use NSOpenPanel to select a folder by the user, where I can programmatically copy some files.
NSOpenPanel *panelOpen = [NSOpenPanel openPanel];
[panelOpen setMessage:@"Please select a location to save file(s)."];
[panelOpen setCanChooseDirectories:YES];
[panelOpen setCanCreateDirectories:YES];
The Open dialog box opens using the Open button. I want to change the button text to "Select" or "Select" instead of "Open."
Is it possible?
source
share