Skip to content

Instantly share code, notes, and snippets.

@mikeabdullah
Created August 31, 2012 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikeabdullah/3553090 to your computer and use it in GitHub Desktop.
Save mikeabdullah/3553090 to your computer and use it in GitHub Desktop.
Suggesting a previous location to a save panel
NSSavePanel *savePanel = [NSSavePanel savePanel];
NSURL *url = [self mostRecentlySavedToURL];
[savePanel setDirectoryURL:[url URLByDeletingLastPathComponent]];
[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