NSDocument is an abstract class that defines the interface for documents, objects that can internally represent data displayed in windows and that can read data from and write data to files.
0
votes
0answers
8 views
When can I access the data of my NSDocument during the initialization?
I need to instantiate some properties with the content of the saved document. Since theses properties are used by my interface, I would like to instantiate them before the NIB is loaded.
At which ...
0
votes
0answers
29 views
Multiple windows for the same document, Version and Auto Save
I experience a strange behavior using multiple windows for the same document, not sure if it is standard behavior.
The drop down menu that let the user browse versions of his document (Versions ...
0
votes
0answers
23 views
NSDocument saveDocumentWithDelegate deadlocked during App termination
NSDocument continues to be a software maintenance nightmare.
Anyone else having a problem where they want certain blocking dialogs to be handled SYNCHRONOUSLY?
BEGIN EDIT: I may have found a ...
1
vote
1answer
33 views
Why aren't the init and windowControllerDidLoadNib: method called when a autosaved document is automatically open ?
I have a NS(Persistent)Document.
I run my application via Xcode, then create a new document (without any data), and then quit my application.
In this case, I can check that the init and ...
0
votes
1answer
48 views
Back Up Documents Folder to iCloud
My app builds PDFs unique to each individual. Since they cannot be easily recreated, and would need to be used on multiple devices, I want them to be backed up to be iCloud. The ideal situation ...
1
vote
1answer
20 views
Binding a Menu Item to a property of the First Responder
I have a document-based application.
In my document class,
I have a BOOL property : isActionPossible.
I also have an IBAction : - (IBAction) doTheAction:(id)sender.
Now, in MainMenu.xib, I want ...
0
votes
2answers
77 views
Document based OSX app - Limit number of open documents to one
I'm trying to figure out how to limit my NSDocument based application to one open document at a time. It is quickly becoming a mess.
Has anyone been able to do this in a straightforward & ...
0
votes
0answers
75 views
Access/Use iCloud Data of existing iOS App from a Mac OS App
I am working an Mac OS version of an existing iOS App. The iOS App uses iCloud to share its data accross devices. Of course this data should be accessable from the Mac OS version as well. When ...
1
vote
1answer
28 views
Debug NSDocument app at startup via file drag-and-drop?
Suppose I have an NSDocument app that supports dragging-and-dropping of a file onto its icon to launch the app and open that file. My NSApplicationDelegate has implemented
- ...
0
votes
3answers
46 views
How to disable the auto-reopening of the last document?
How to disable the auto-reopening of the last document ?
When I execute my application, it calls the method readFromData.
But, the problem is that between my version 1 and my version 2, I ...
0
votes
1answer
38 views
Use of NSDocument when I don't need multiple document support?
I like NSDocument because, when used in conjunction with a Core Data model, gives me an application with persistent data for free. But I know that, for my particular project, I will only ever deal ...
0
votes
1answer
65 views
Does NSFileWrapper support lazy loading?
I am creating a NSDocument package that contains potentially hundreds of large files, so I don't want to read it all in when opening the document.
I've spent some time searching, but I can't find a ...
1
vote
0answers
73 views
Apple sandbox: Disable NSDocument's atomic save for Document-scoped bookmarks
I have posted this question on Apple's Developer forum and received no reply after a week, so I am hoping I will have better luck here.
I have created a standard document-based application (using ...
0
votes
0answers
42 views
iCloud merge conflict not working with custom windowcontroller with NSDocument.
I have a custom NSWindowController for a NSDocument that have iCloud support. iCloud is working except when there is a merge conflict and using the built in "resolve conflict". The old versions are ...
0
votes
1answer
61 views
Cache for packaged NSDocument file format design
I am designing a packaged-based NSDocument file format. The document will contain lots of directories and files, so I want to save a cache, either as part of the document, or in the application's ...
4
votes
1answer
95 views
Custom accessory view for NSSavePanel of NSDocument
Consider a Cocoa NSDocument that supports two document types (e.g. BMP and JPEG). While one type has no save options (e.g. BMP), the other does (e.g. compression level for JPEG).
How do you implement ...
1
vote
1answer
26 views
Get supported document types
How do you get the list of all supported document types in a Cocoa app, programatically?
I expected to find this in NSDocumentController but the closest thing appears to be documentClassNames, a list ...
1
vote
0answers
19 views
Cocoa: in a document-based application, where does one store prefs for each document?
When making a document-based application, each document could have settings associated with it: sort order, split view size, window size, font size, etc. Some of these I can see getting wrapped in ...
1
vote
1answer
51 views
Add vertical scroll bar to document-based Mac app's window
I'm looking at MyDocument.xib in Interface Builder and I can't for the life of me find how to add a vertical scrollbar.
It's set to 768x756 minimum size and 768x1024 maximum size. It starts out at ...
0
votes
1answer
59 views
OS X Data file editor saving to XML: Document based or not?
So I'm trying to make a data editor for an iOS/Android app I've got. There's 3 separate data files that I'd like to be able to edit, and I would like to save them to plist files or xml files. I'm ...
1
vote
1answer
76 views
Proper way to close NSDocument programmatically
I have a subclass of NSDocument that crashes whenever I use [self close] to avoid the default 'save' dialog for new documents:
2013-02-25 15:23:06.338 MyApp[692:403] An uncaught exception was raised
...
0
votes
1answer
53 views
NSDocument Saving audio And Vidoes Files
I have an ios App That has Download Feature for Audio and Video Files The Question Is Where Should I Download These Files And How ?
1
vote
1answer
76 views
Get notified when NSDocument is saved
How can I get notified when NSDocument is saved, the first time and subsequent times?
I first thought that overriding writeToURL:ofType:error: would do it, but it appears that this method is also ...
2
votes
1answer
47 views
method called in document.m on closing of document
i use - (void)windowControllerDidLoadNib:(NSWindowController *)aController to see when a document has been loaded in a document based application. But what method should I use to see when a document ...
0
votes
1answer
63 views
How to know when a Cocoa app is about to quit?
I have a NSDocument based application. I'd like to know when the application is about to quit to validate some things. I'd hoped there might be a method such as a applicationWillQuit, but looking ...
0
votes
0answers
15 views
Connecting 2 NSTableViews
I have a NSTableView with names in it which populates text fields with their personal details. I am working on creating my own patient management system so I also want each individual person entity ...
6
votes
2answers
124 views
Export NSDocument in Mac app
How do you export a NSDocument in one format into another NSDocument in another format?
I would like to implement the typical Export option in my document-based app. I'm not sure where I should put ...
1
vote
2answers
421 views
ios - delete single files that are downloaded into the documents directory
Firstly = I apologize because I have already tried to ask this once before here
I am really struggling with this:
// Override to support editing the table view.
- (void)tableView:(UITableView ...
1
vote
2answers
108 views
OS X Cocoa: NSDocument-Based Application not saving
I'm having a odd problem with an NSDocument-based application I am writing. When I first create a document and save it everything works as it should. However, when I reopen the document (which works ...
1
vote
2answers
114 views
Open any folder with NSDocument
I am trying to write an application that can open any folder in the NSDocument subclass but can't figure out the right Info.plist settings. It is important that my app should not use bundles, neither ...
1
vote
1answer
75 views
How to show an application-modal “New Document” window on File > New / Cmd+N?
Is there a recommended/common way for showing an application-modal "New Document" window when the user chooses File > New or presses Cmd+N?
I am talking about a window where the user can set initial ...
5
votes
2answers
331 views
Document-based app doesn't restore documents with non-file URLs
I have an application based on NSDocument with an NSDocumentController subclass. My NSDocument works with both file URLs and URLs with a custom scheme which use a web service.
I handle much of the ...
1
vote
1answer
56 views
NSDocument - how to prevent a document from being marked as updated automatically?
I have a cocoa app that allows the user to enter a query. I'm using an NSWebView with a TextArea HTML object. The problem is, as soon as I type anything into the textarea, my document gets marked as ...
0
votes
1answer
328 views
How can I make a folder in NSDocument directory where I can save all the photos and delete the data from same folder when I want?
I have a tableView where for each cell I'm getting an image url string and I'm saving all data in the NSDocument directory.
I want to store all the data in folder made in the NSDocument directory and ...
8
votes
2answers
186 views
iCloud enabled - Stop the open file displaying on application launch?
I've just added iCloud support to an app that I am working on. Its working great, except that when I open the application without a document in focus the iCloud open file dialog appears and I don't ...
0
votes
2answers
61 views
Cocoa - Adding menu to support versions? (Like in TextEdit)
In TextEdit, if you click the little dropdown next to the filename you get a menu which shows a couple of entries including Rename, Move to iCloud, Move To, Duplicate, Lock and finally Browse All ...
0
votes
1answer
71 views
Link NSDocument's changeCount to NSTextView
Is there a way to somehow link an NSDocument's changeCount to the only NSTextView that is used for a document?
Or so I have to implement all the necessary NSTextViewDelegate methods and update the ...
0
votes
2answers
100 views
Show sheet for new document window
When the user creates a new document in my NSDocument-based Cocoa application, I want the new document window to show a sheet where the user can set some initial document parameters.
This sheet shall ...
1
vote
0answers
81 views
How to show document preview in iCloud conflicts sheet in Mac App using NSDocument
I am creating a Mac App, using NSDocument, that stores a custom class of documents to iCloud.
I was able to get the program to store documents to iCloud quite easily by just Code Signing it, ...
0
votes
0answers
47 views
Lost with Window resume feature, autosave in user preferences and save in model for NSDocument
I started a little document based application with a NSOutlineView on the main window.
I saved my model in files using NSCoding protocol in the model classes and everything is fine.
Next I wanted to ...
0
votes
2answers
62 views
How to set save notification when click close in document based application
I am doing a simple document based application. I've implemented readFromData and dataOfType function. Creating a newDocument and saveDocument are working. However, the question is how to set up save ...
1
vote
1answer
110 views
How to automatically create new NSDocument if no documents are restored?
EDIT: It seems like the issue below only occurs (rather, fails to occur... :) when I run the from within Xcode (I'm on 4.4), rather than from Finder. Is this an Xcode bug, or am I missing something?
...
0
votes
2answers
43 views
NSUserDefaults per document
Does the AppKit framework provide a way to store NSUserDefaults per NSDocument? If not, how would you recommend to implement this?
0
votes
0answers
87 views
Load default database in CoreData document based application
I have an application based on the documents and I would like that when you create a new file the tableview are pre-populated with default data.
I did the following:
1)I launched my pplication and I ...
1
vote
1answer
103 views
Methods to override to load multiple files for an NSDocument
I have an nsdocument subclass which handles the loading of a binary file (of an existing format, not of my creation.) The file format uses 3 files with the same name for each logical "document" (with ...
2
votes
2answers
177 views
Include iCloud on save dialog box in mac app
I have implemented the iCloud support on my Mac document-based app.
NSDocument subclass can handle open e save file on local storage and iCloud.
But, I can upload my files on iCloud only dragging it ...
0
votes
0answers
53 views
Calling presentError:modalForWindow in NSDocument multiple times show only first error
i wrote an document based application and i need to manage errors.
I call presentError:modalForWindow:delegate:didPresentSelector:contextInfo: of NSDocument when i need to show these errors.
That ...
0
votes
0answers
44 views
NSDocument with multiple objects
I have a document based app that is intended to retrieve a couple of mutable arrays and display them in table views. I also wanted to be able to load and save the data. Do I need a create a SINGLE ...
2
votes
1answer
80 views
Different menubar in document based apps
I've a cocoa app based on NSDocument, I've two types of document.
Every document type has its own menu items, all items are defined in mainmenu.xib.
As defined in Apple UI guidelines the menu items ...
1
vote
1answer
76 views
Mac app, NSDocument window does not appear in Window menu
I have continued work on an app made by another. It looks in relevant parts identical to the standard NSDocument window-based app that you get when starting a new project (where the Window menu works ...
