How do I programmatically default select the file format in NSSavePanel?
I have it currently set to image types only, however it always defaults to TIFF.
NSSavePanel *savePanel = [NSSavePanel savePanel];
_saveOptions = [[IKSaveOptions alloc] initWithImageProperties: _imageProperties
imageUTType: _imageUTType];
[_saveOptions addSaveOptionsAccessoryViewToSavePanel: savePanel];