Where do you put cleanup code for NSDocument sub-classes?

前端 未结 2 416
暖寄归人
暖寄归人 2021-01-05 02:26

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

相关标签:
2条回答
  • 2021-01-05 02:41

    The correct answer here didn't fit my use case, but the question does. Hence the extra answer.

    My use case: closing a document (which may be one of several that are open) but not closing the application.

    In this case (at time of writing and unless I'm just looking in the wrong place) the documentation is not as helpful as it could be.

    I added a canCloseDocumentWithDelegate:shouldCloseSelector:contextInfo: override in my NSDocument subclass and called super within it. The documentation doesn't say whether you must call super, but a bit of logging shows that the system is providing a selector and a context. This method is called just before the document is closed.

    - (void) canCloseDocumentWithDelegate:(id)delegate shouldCloseSelector:(SEL)shouldCloseSelector contextInfo:(void *)contextInfo;
    {
        if ([self pdfController])
        {
            [[[self pdfController] window] close];
            [self setPdfController: nil];
        }
    
        [super canCloseDocumentWithDelegate:delegate shouldCloseSelector: shouldCloseSelector contextInfo: contextInfo];    
    }
    

    There is some useful discussion of this method on CocoaBuilder. If there's downsides to this approach or better ways of doing this, please comment.

    0 讨论(0)
  • 2021-01-05 02:56

    Have each document add itself as an observer in the local notification center for NSApplicationWillTerminateNotification. In its notification method, call its clean-up method (which you should also call from dealloc or close).

    0 讨论(0)
提交回复
热议问题