10

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

Paulo Mattos
  • 18,845
  • 10
  • 77
  • 85
Mansour
  • 515
  • 3
  • 7
  • 20

1 Answers1

13

Just like in iOS. Use windowScene(_:didUpdate:interfaceOrientation:traitCollection:) in your window scene delegate, or implement viewWillTransition(to:with:) in your view controllers.

Léo Natan
  • 56,823
  • 9
  • 150
  • 195