vote up 2 vote down star

Documentation simply states that setting setAutosavingDelay to anything > 0 on the shared doc controller should do it, but after calling

[[NSDocumentController sharedDocumentController] setAutosavingDelay:2.0];

in my controller, autosave doesn't seem to work: I neither see anything in ~/Library/Autosave Information/, nor is

[[[NSDocumentController sharedDocumentController] currentDocument] autosavedContentsFileURL]

initialized.

Note that in my app, normal loading and saving work fine (keyedarchivers, nscoding-based class for my docs, etc).

flag

75% accept rate
Just as a sanity check, you did make a change to the document so there was something to auto save? (and see what -hasUnautosavedChanges reports) – Nathan Kinsinger Jan 3 '09 at 3:34

1 Answer

vote up 1 vote down

Have you overridden -updateChangeCount: at all? I'm pretty certain that Apple's implementation is the code that starts up the autosave timer. Also, what if you experiment with a longer timer?

link|flag
Thanks. I haven't. I'll give both a try and get back. – taco Jan 13 at 23:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.