Reputation: 535
How can I a get a notification when user resize the window while:
NotificationCenter.default.addObserver(self, selector: #selector(function), name: NSWindowDidResizeNotification, object: nil)
is unavailable in Mac Catalyst
Upvotes: 11
Views: 2671
Reputation: 57040
Just like in iOS. Use windowScene(_:didUpdate:interfaceOrientation:traitCollection:)
in your window scene delegate, or implement viewWillTransition(to:with:)
in your view controllers.
Upvotes: 14