Tagged Questions
The nssavepanel tag has no wiki summary.
10
votes
1answer
263 views
A smart way to retrieve allowed file types from plist
Scenario:
I like to define the allowed file types (content types) in the Info.plist file of my Cocoa application. Therefore, I added them like the following example shows.
# Extract from Info.plist
...
3
votes
3answers
110 views
Getting path to users Library folder in Osx
I need to open a NSSavePanel with the users Library folder as destination folder. Normally I would do this by entering "~/Library/" in [NSSavePanel beginSheetForDirectory].
This works fine as long as ...
3
votes
1answer
450 views
NSSavePanel and the Sandbox
I have some problems understanding the new Lion's Sandbox.
I know that Lion includes a trusted daemon process called Powerbox whose job is to present and control open/save dialog boxes on behalf of ...
2
votes
2answers
77 views
NSSavePanel handle actions
Simple question:
I want to handle the action for cancel button pressed in my NSSavePanel. I'm using the panel with the delegate class:
NSSavePanel *save = [NSSavePanel savePanel];
[save ...
2
votes
1answer
173 views
“Save As” in non-document based application Cocoa
I'm working on a project that essentially creates files via a shell script using "sox". The application is not document-based, all its doing is calling a script that creates files, and doesn't ...
2
votes
1answer
325 views
Completion handler never called for NSSavePanel beginWithCompletionHandler
When I open an NSSavePanel or NSOpenPanel instance with beginWithCompletionHandler: the handler is never called. Instead I see the panel appear for a fraction of a second, before it goes away again ...
2
votes
3answers
495 views
NSSavePanel: Squelching the “confirm replace?” dialog
In the Nav Services world one could specify kNavDontConfirmReplacement as an option to create a NavDialogRef that would not ask the user to confirm the replacement of a file when saving with a file ...
1
vote
1answer
81 views
NSOpenPanel/NSSavePanel: How can I preselect a file before the dialog opens?
When I present a NSOpenPanel to the user I'd like it to have a file that the user opened earlier already selected from the start.
There is [NSSavePanel setDirectoryURL:(NSURL*) to preselect a ...
1
vote
1answer
128 views
Doing something after NSOpenPanel closes
I have an NSOpenPanel and I want to do some validation of the selection after the user has clicked OK. My code is simple:
void (^openPanelHandler)(NSInteger) = ^(NSInteger returnCode) {
if ...
1
vote
1answer
53 views
Determine which button pressed in Save Panel in NSDocument based application
How should I determine which button is pressed (save, Cancel) when the save dialog is dismissed in an NSDocument based application ? The save panel is the default provided by NSDocument when save is ...
1
vote
2answers
190 views
Why is NSOpenPanel/NSSavePanel showing memory leak?
Not sure why, but making a simple [[NSOpenPanel openPanel] runModal]; creates a memory leak - seen in Leaks Instrument.
Seems off.
It's an auto-released object, shouldn't it be automatically ...
1
vote
2answers
294 views
Replace a file using the NSSavePanel in a sandboxed application
I create a NSSavePanel using this code:
NSSavePanel *savePanel = [NSSavePanel savePanel];
savePanel.delegate = self;
savePanel.directoryURL = ...;
savePanel.nameFieldStringValue = ...;
[savePanel ...
1
vote
1answer
66 views
Saving a cocoa doc from outside NSDocument class
During my app workflow there is a moment when a new modal NSWindow is initialized from a nib. This window should have a save document button. Which is the recommended approach:
Via a new NSSavePanel ...
1
vote
1answer
505 views
NSSavePanel selecting part of file name
How do I set the part of the file name that is selected in NSSavePanel? I only want the file name selected and not the file extension.
Here's what I noticed. If I setAllowedFileTypes: for the save ...
0
votes
0answers
21 views
NSSavePanel hung while listing directories
I try to trigger my overridden saveDocument method before doing a specific task in my NSPersistentDocument.
I have a beingSheetForWindow:CompletionHandler: call that launches the savePanel.
But it ...
0
votes
1answer
28 views
How to listen to System-wide Open and Save Panel Events?
Is there any way to listen for system-side open and save panel events and respond to it, similar to how Default Folder X does it? Does this require private APIs or runtime code replacement? Or can it ...
0
votes
1answer
80 views
NSAlert Over NSSavePanel
i am new in objective c , i want create alert over save panel to get confirm from user to overwrite exist file or not , like text editor when you save a file in a directory that have same file name ...
0
votes
0answers
41 views
NSSavePanel completion handler - newbie questions
I'm upgrading an NSSavePanel routine to use a completion handler block (rather than the old callback) and have a couple of basic questions about blocks:
I have the data to be written out in an ...
0
votes
0answers
27 views
cocoa: Save nsstring in rtf format
How do I save a string in rtf format with nssavepanel...
NSSavePanel *savePanel = [NSSavePanel savePanel];
[savePanel setRequiredFileType:@"rtf"];
[savePanel setTitle:@"Save as Rich ...
0
votes
1answer
58 views
NSSavePanel cancel confirmation
I have a NSSavePanel and I want to handle the "Cancel" button action to prevent closing the sheet. A want to show the confirmation alert above the savePanel sheet like it is done if you want to ...
0
votes
1answer
144 views
NSSavePanel, CGImageDestinationFinalize and OS X sandbox
I'm using NSSavePanel to let user select image to save to in my app. Everything worked fine until I enabled app sandboxing and entitlements. The problem occurs with selection of an already existing ...
0
votes
2answers
141 views
NSSavePanel issues
I am semi-new to cocoa programming, however I have worked quite a bit in C++;
I am having some issues with the NSSavePanel class. Whenever I use it (as shown below), I can see (by using breakpoints) ...
0
votes
1answer
47 views
How can I hide the save panel when I'm using a NSDocument
So I'm trying to play around with WebKit and create my own browser. However, now I'm kind of stuck where I can't hide the save panel when I try to close my window. I can't find any method in the ...
0
votes
0answers
64 views
How to give input to NSSavepanel through keyboard in mac
I have to save the drawing which i have drawn so for that i have used NSSavePanel
// code for save panel
NSSavePanel *panel = [NSSavePanel savePanel];
[panel ...
0
votes
1answer
87 views
should i call NSSavePanel runModal method only from main thread?
I have weird, though rare, crashes in my application.
I suspect that it happens because runModal of NSSavePanel is called in a thread different from the main thread.
Am i correct that it might be ...
0
votes
1answer
242 views
Saving an NSView to a png file?
I am making a simple program that creates game cards for a game I play. I have sent it out to some friends of mine for testing, but they really want it to save images, not just print them. I have ...
0
votes
1answer
805 views
How can i use NSSavePanel to select a directory?
I need the user select an existing or a new directory where my app can save a few files.
Can i do this with NSSavePanel or is there another directory selector class?