0
votes
3answers
78 views
Use ZIP-archives to store NSDocument data
I noticed that Apple started using zip archives to replace document packages (folders appearing as a single file in Finder) in the iWork applications. I'm considering doing the sam …
0
votes
1answer
37 views
How can I create a document-based application that cannot create a new document?
I have a document-based application that is designed to process existing documents, not to create new documents.
How do I prevent the application from creating a new, blank docume …
0
votes
1answer
20 views
How do I define a writable type for an application with a “Viewer” role?
I have an application that has the Viewer role for PDF files. Although my application does not edit the PDF files, it does allow the user to save the PDF file (if it is too large o …
1
vote
1answer
33 views
How to associate an action to a keyboard shortcut?
Hi all,
I've an IBAction that calls up a panel. I want to invoke that action with a keyboard shortcut but I'm at a loss on how to do it.
I guess one way of doing it would be to c …
0
votes
3answers
61 views
Problem with NSDocument and writeToURL:ofType:error:
I'm working on a document-based application, and I want to use a document package as my file format. To do that, it seems that the NSDocument method I need to override is
-writeToU …
1
vote
1answer
126 views
NSDocument architecture pros and cons
Does anybody have any NSDocument pros and cons they'd like to share?
In particular:
Once you depend on the NSDocument architecture, is it difficult to refactor it out if you nee …
0
votes
1answer
45 views
Validate before opening a document in NSDocument architecture
I have an document based application which formats an XML file.
Writing and reading of document is done in my NSDocument subclass
- (BOOL)writeToURL:(NSURL *)absoluteURL ofType:( …
1
vote
1answer
96 views
Enabling Save for an NSDocument
Hello,
I am using an NSDocumentController subclass to do some custom stuff when I create my NSDocuments. The strange thing is that when the document is created, the Save option in …
0
votes
2answers
172 views
Multiple Documents in a Single Window in Cocoa
I want to write an application which may have multiple documents in a single window via a tabbed interface. Should I avoid the NSDocument architecture (the Cocoa Document-based Ap …
0
votes
1answer
104 views
Where do you put cleanup code for NSDocument sub-classes?
I have a document-based application and I have sub-classed NSDocument and provided the required methods, but my document needs some extensive clean-up (needs to run external tasks …
