|
|
|
|
|
by jakobegger
3080 days ago
|
|
Regarding unsaved state when restarting, that sounds like an app problem. macOS has gotten extremely good at state restoration and has great APIs for that. Typically my computer screen looks exactly the same after a restart. So if your app loses state because of an automatic restart, that is really a problem with the app. The developer should either make use of the state restoration APIs (preferred), or at least implement -applicationShouldTerminate: to prevent the reboot when there are unsaved changes. |
|