Tagged Questions
0
votes
0answers
87 views
Encoding NSViewController for Lion's user interface resume feature
Any idea what are the best practices for archiving an NSViewController inside a window for resume (user interface preservation) purposes? I've tried archiving it in the window controller's ...
2
votes
1answer
406 views
NSKeyedArchiver: distinguishing between different instances of the same class
I'm implementing support for Lion's "Resume" feature in my OS X app.
I have a custom subclass of NSViewController in which I implemented the method
encodeRestorableStateWithCoder: as:
...
2
votes
1answer
878 views
Why won't an NSWindow restore its state (using Resume in Lion)?
I'm working on implementing Resume in my formerly Snow Leopard app. For my app's main window, I checked the Restorable checkbox in Interface Builder, and everything's working fine. Its delegate has ...
1
vote
1answer
334 views
NSWindowRestoration issue
I am having a difficult time implementing this new "feature" of Mac OS X 10.7. For the most part, my application works without my having to do anything. Files reopen on launch as expected. If the file ...
6
votes
1answer
582 views
Prevent “Resume” for my Cocoa application?
I love the new "Resume" feature in Lion. After a restart window size and position is exactly how you left it. But during development this is a bit annoying.
If I resize a window in the Interface ...