What is the best way to remember the Windows position between application loads using Obj-C? I am using Interface Builder for the interface, is it possible to do this with bind
In Swift 5.2, in your NSWindowController class:
NSWindowController
override func windowDidLoad() { super.windowDidLoad() self.windowFrameAutosaveName = "SomeWindowName" }
That's all there is to it!