I have an app which uses an NSSavePanel.
The app is a video editing app, and I need this save panel to display a selection menu for the format of the video.
How could I do that ?
Here is a simple code:
NSSavePanel *mySavePanel = [NSSavePanel savePanel];
//Code to add a selection menu
[mySavePanel runModal];
Thank you in advance.