4
votes
3answers
127 views
Can I write to the resource fork using NSDocument?
I'd like to store some additional information along with a document, but I can't use bundles or packages, and I cannot store it inside the document itself.
The application is a text editor and I'd ...
3
votes
1answer
64 views
Is there a better way to access the Document from its subviews?
I have some classes located on my Document such as NSNotificationCenter and NSUndoManager that I need access to from my subviews.
Right now I can access them by doing something like this:
...
3
votes
1answer
310 views
NSDocument to hold a complete folder?
I ask sorry if this argument has already been covered, but after some research i found nothing precise.
I need to make a document based application, where the document is actually not a single file ...
3
votes
1answer
601 views
How to inspect the responder chain?
I'm doing some crazy multiple documents inside a single window stuff with the document-based architecture and I'm 95% done.
I have this two-tier document architecture, where a parent document opens ...
3
votes
2answers
162 views
Document-based application, or not?
I'm writing a desktop app that could be used to manage a dance academy. My Core Data model contains such entities as Student, Teacher, Class, Invoice, etc along with the various relationships between ...
3
votes
1answer
366 views
When should I extend NSDocument and when should I extend NSWindowController?
I've an application that holds a main window with a list of items, and from that window an undetermined number of windows can be opened. Each of those windows can hold several instances of a model ...
3
votes
2answers
2k views
Create Subfolder in NSDocumentDirectory
I just wanted to know if it's possible to create a subfolder in the NSDocumentDirectory and write data into that created folder, like:
NSArray *paths = ...
3
votes
4answers
753 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 same as I keep getting ...
2
votes
3answers
42 views
NSDocumentController currentDocument returning nil
I'm working on my first Mac document-based application.
I have subclassed NSDocument, reimplementing methods such as
- (BOOL)readFromURL:(NSURL *)absoluteURL ofType:(NSString *)typeName ...
2
votes
1answer
71 views
How to add “normal” NSDocument logic to a modified project-based architecture?
I am planning to create a project-based Mac application. It has its own project file format and is currently able to read and handle it. That's already the problem of the whole story: I open the ...
2
votes
4answers
426 views
Printing an NSDocument
I'm trying to print a document. The document is an array of NSImageReps, or a single NSPDFImageRep, which has multiple pages. I'm having trouble figuring out how to use the NSPrintOperation class to ...
2
votes
1answer
153 views
How to associate an action to a keyboard shortcut?
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 create a menu item, associate ...
1
vote
0answers
40 views
+50
Bug in Cocoa document-based app with the window's document icon popup menu
I have a document-based app that supports Versions and Autosave. When you click the proxy icon, a popup menu appears like in any other document app, too:
You notice this weird NSMenuItem item? It's ...
1
vote
1answer
79 views
Sharing an object for binding (specifically an NSDocument) between various views / nibs
I'm writing an application for OSX (Lion) using Xcode 4.
Hitting a bit of a wall with this one and the internet has thus-far proved not particularly helpful.
I have a document defined, as well as ...
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
1answer
55 views
Passing data to a specific open NSDocument?
I have been having lots of trouble with this one. I need to have an NSViewController and an NSView pass integer's to a specific document. I really want it to pass the data to the document represented ...
1
vote
1answer
67 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
3answers
186 views
Sharing NSDocument subclass between multiple NSWindowControllers
I have a application that isn't currently a document-based application (because I thought it would be more trouble than its worth). However I've been thinking it may possibly be worth it now, but ...
1
vote
1answer
474 views
Cocoa/Obj-C - Open file when dragging it to application icon
Currently there is a button on my app inteface which allow to open a file, here is my open code:
In my app.h:
- (IBAction)selectFile:(id)sender;
In my app.m:
@synthesize window;
- ...
1
vote
2answers
233 views
The document “Untitled” could not be saved as “Untitled”
I am trying to develop a document based mac app using this Apple walkthrough and I am having issues saving the file (the final step). The error that I am getting after I try to save a file is: The ...
1
vote
2answers
317 views
Prevent warning when NSDocument file is (programatically) renamed
My application allows the user to rename documents that are currently open. This is trivial, and works fine, with one really annoying bug I can't figure out. When a file is renamed, AppKit (kindly) ...
1
vote
0answers
135 views
Looking to introduce tabs to document-based application, ideas?
I have a document based application, that so far simply edits documents with a new window for each document.
I'm now adding the ability to create a project, which is a document in itself. That ...
1
vote
2answers
225 views
Binding to array controller in another nib for inspector window
Binding a popup menu to an array controller with the path selection.type works fine.
Binding a popup menu to a document controller with the path currentDocument.arrayController.selection.type works ...
1
vote
1answer
119 views
NSDocument vs sqlite records
I'm developing a cocoa application that could be used to manage customer and employee details in a small business.
When I read through the NSDocument architecture, I believe that the ...
1
vote
1answer
85 views
Getting Notifications of isDocumentEdited
is it possible to bind/get notifications of the isDocumentEdited property of NSDocument without calling the will/didChangeValueForKey: methods on every change?
1
vote
2answers
145 views
How can I save an NSDocument concurrently?
I have a document based application. Saving the document can take a few seconds, so I want to enable the user to continue using the program while it saves the document in the background.
Due to the ...
1
vote
1answer
103 views
Do I need to override the writing methods of NSDocument in subclasses for an application that will only be a viewer for files
I think I may be missing the obvious but I'm not sure.
The section on subclassing NSDocument in the docs states that subclasses of NSDocument must override one reading and one writing method.
If I'm ...
1
vote
1answer
178 views
Let the user choose what type of document to open
I'm creating an NSDocument application, with two document types: Website and Web Service. This is in my Info.plist:
<key>CFBundleDocumentTypes</key>
<array>
<dict>
...
1
vote
1answer
101 views
Shutting down multithreaded NSDocument
I have an NSDocument-based Cocoa app and I have a couple of secondary threads that I need to terminate gracefully (wait for them to run through the current loop) when the users closes the document ...
1
vote
1answer
314 views
WebView Cocoa control crashing on window close
I get a crash in WebEditorClient::clearUndoRedoOperations which is trying to access -[WebView(WebViewEditing) undoManager] when I close the main window of an NSDocument that contains a webview with a ...
1
vote
1answer
928 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 need to?
Are there ...
1
vote
1answer
553 views
Enabling Save for an NSDocument
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 the menu is disabled. The ...
0
votes
1answer
70 views
NSDocument sync with iCloud, where is there a sample code?
I have seen a sample code for ios and I used it to sync an NSDocument to and from iCloud and now I am trying to sync iCloud with a UIDocument on a mac OSX app which doesnt have a UIDocument so I ...
0
votes
1answer
16 views
Get associated NSDocument for window
How do I properly retrieve the NSDocument associated with the document window? I need the NSDocument as data source for displaying data in the window.
Do I have to iterate over all open documents and ...
0
votes
1answer
45 views
What is the equivalent of viewWillAppear for NSDocument
I have a NSDocument based application with a nib that represents the visual document. As soon as the view Appeared I want to trigger some actions.
For a "normal" UIViewController I would simply ...
0
votes
0answers
31 views
Resolved: NSDocument test case IBOutlets set to nil after DidLoadNib
Question was resolved, refer to EDIT2 for solution
I am currently building a test case for my NSDocument application. In it i need to access some instance variables of my NSDocument thus I am ...
0
votes
2answers
46 views
Core Data slows to a crawl when editing a scrolling textview
interesting problem here:
I've got a handful of textviews connected to a Core Data model. Everything works fine, except one thing.
When I put information into a textview, the entire application ...
0
votes
2answers
44 views
Create NSArray of a folder subpaths
Is there a core method to create an array representation of a folder?
I mean something like
[
folder1[
001.jpg,
002.jpg
],
folder2[
subfolder1[
001.jpg
002.jpg
...
0
votes
1answer
55 views
NSDocument - memory leak & app crash
I have a memory leak in my document based app. It launches fine, I can open or make a new document, but only one or two times, and then the app crashes.
I used analyzed tool in Xcode and there are no ...
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
1answer
77 views
Get the right window for NSDocument's readFromData:::
I've successfully implemented a NSDocument class in my Cocoa App which is also able to save data properly. But I have problems when it's about opening files.
This is my basic setup:
NSDocument ...
0
votes
0answers
84 views
Can I make multiple NSDocument subclass instances use the same NSWindowController subclass instance?
I want to implement a project-based application (simple IDE) in a way similar to how Xcode does it and I want to use NSDocument, but I want to use it just for the files in the project, not the project ...
0
votes
2answers
59 views
“Global” model in NSDocument-based applicaiton
I have a NSDocument based application, which allows the user to send messages, after he has logged in.
These should be the user's steps:
The user starts the App and logs in (credentials are stored ...
0
votes
1answer
85 views
Closing specific NSDocument instance with notifications
I have the following issue. I am trying to reproduce an XCode-like "new project" workflow in a small IDE I build. For this I have a sheet that runs modal in the window created by the doc window ...
0
votes
1answer
131 views
applicationShouldOpenUntitledFile returns NO, but app still opens blank documents
I'm not clear on how to stop a document-based application from displaying an empty document at startup.
In a previous question that I posted, someone said, "Are you sure the window delegate is being ...
0
votes
1answer
271 views
NSWindowController not hiding its window at init?
I have an NSDocument subclass with two NSWindowControllers corresponding to 2 different xib.
Following the Document-Based Application Guide I have added the following in my document.m implementation
...
0
votes
1answer
115 views
How to access NSArray instance belonging to MyDocument in another xib?
In my document application I subclassed an NSArrayController which I referenced in MyDocument.xib bounding its content to File's Owner.entries.
entries is an NSArray I expose as an attribute of ...
0
votes
2answers
331 views
Documents directory in objective C
In Xcode, the Resources folder links to the NSDocumentsFolder of the app? Or what else?
Is there a way to see the files in NSDocumentFolder without write code?
0
votes
1answer
104 views
Help diagnosing crash in Cocoa framework - possible memory leak?
I'm currently migrating the Fragaria framework from a GC-only environment to GC being supported. After the work was done (or what I thought had to be done to make it work) I was able to run the ...
0
votes
1answer
207 views
Strange loadNibNamed behaviour
I have a document-based Cocoa app. During runtime, I load an additional nib from the bundle by invoking [NSBundle loadNibNamed:@"inspectorNIB" owner:self] (where self is the NSDocument).
Strangely ...