Created
August 31, 2012 14:07
-
-
Save mikeabdullah/3553124 to your computer and use it in GitHub Desktop.
Carefully suggesting a previous location to a save panel
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
NSSavePanel *savePanel = [NSSavePanel savePanel]; | |
NSURL *url = [self mostRecentlySavedToURL]; | |
NSURL *parentDirectory = [url URLByDeletingLastPathComponent]; | |
NSNumber *isDirectory; | |
if ([parentDirectory getResourceValue:&isDirectory forKey:NSURLIsDirectoryKey error:NULL] && | |
[isDirectory boolValue]) | |
{ | |
[savePanel setDirectoryURL:parentDirectory]; | |
} | |
[savePanel setNameFieldStringValue:[url lastPathComponent]]; | |
// Finish configuring and run the save panel |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment