I'm writing an application using NSWindowDelegate. However, when I resize the window, it doesn't call function:
func windowDidResize(notification: NSNotification)
This is my class
class ViewController: NSViewController, NSWindowDelegate {}
and the storyboard:
I linked delegate to my window. But it doesn't work. Can you help me fix the error? Thank you.