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.

learn more… | top users | synonyms

0
votes
0answers
6 views

Isolated process with NSDocument based app

is possible to create an isolated process inside a cocoa app? As like Safari owns a separate process for each tab, I would to have a separate process for each NSDocument of my app. What's the best way ...
0
votes
0answers
10 views

NSDocument Incremental Data Writing & dirty state

As you can read in "Incremental Data Reading and Writing" it is suggest either to store the data in separate files (using NSFileWrapper) or using CoreData. If you dig deeper you find that CoreData ...
0
votes
0answers
8 views

NSDocument writeToURL custom data incorrect UTI

I have an NSDocument subclass that uses its own custom format and have overridden writetourl: and readfromurl:. The problem is when I write my custom format file to disk it writes properly but is ...
1
vote
1answer
59 views

NSDocument-based Mac application with bundles for document, super slow to save

So after googling a bit it's my understanding that when I use a bundle for my document in a NSDocument-based app I have to write the entire bundle each time I want to save? This is starting to get ...
0
votes
0answers
41 views

How to list out Recently Opened documents in iOS?

I have listed out all the documents in NSDocument Directory and im able to get the documents that are recently modified using : NSMutableArray* filesAndProperties = [NSMutableArray ...
0
votes
1answer
166 views

How to save created PDF in document folder and merge in iOS

Updated I am able to create single PDF page of photo captured with comment in iPHone. On button click I am generating one single PDF page every time and I want those PDF page in single PDF bunch. I am ...
0
votes
0answers
14 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
33 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
32 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
47 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
63 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
33 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
98 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
94 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
36 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
57 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
42 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
77 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
106 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
54 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
68 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
107 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
27 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
22 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
55 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
64 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
97 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
58 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
81 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
53 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
80 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 ...
13
votes
2answers
347 views

Clear UIWebView cache when use local image file

I use a UIWebView to load a local html, and there is a PNG file inside the html created by Objc. After the PNG file has been modified, I reload the html in UIWebView, but the image doesn't change. ...
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 ...
5
votes
2answers
136 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
570 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
112 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
135 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
80 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
361 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
57 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
401 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
197 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
73 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
76 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
107 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
83 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
49 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
65 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
150 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
45 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?

1 2 3 4 5