I'm developing an app by using macCatalyst.
When user has closed the window on mac version, the app is terminated.
It was possible to change this behavior in cocoa by using:
applicationShouldTerminateAfterLastWindowClosed
method or by setting NSSupportsAutomaticTermination to NO in plist file.
How can I get the same in a macCatalyst app?
