Created
September 6, 2016 04:15
-
-
Save marianomike/6f188663f881c422108206020597ac17 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//allow xml to be written to the folder | |
var fileTypes = [NSArray arrayWithObjects:@"xml", nil]; | |
//create select folder window | |
var panel = [NSOpenPanel openPanel]; | |
[panel setCanChooseDirectories:true]; | |
[panel setCanCreateDirectories:true]; | |
[panel setAllowedFileTypes:fileTypes]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment