Is it possible to get notification when application entered fullscreen mode? Because I have to redraw images when app enters full screen, and now I can’t do it because I don’t know when app enters fullscreen.
I found method:
- (void)windowDidEnterFullScreen:(NSNotification *)notification
but where I have to use it? Because in NSWindow class it is not working.
You can also use this function
This function get called whenever the size of the window changes.