I have a SpriteKit/SwiftUI project.
Let's say my app gets terminated by iOS because of memory pressure, or some other similar problem caused by my app. Will my delegate life cycle methods be called, or not?
Specifically, I'm wondering if my AppDelegate
's applicationWillTerminate(_:)
method will be called. Will it be called regardless of the cause of the termination, or are there certain termination causes that will result in it not being called?
I saw this question, but the answer doesn't include any references or anything -- it's just a random claim that may or may not be accurate.
Thank you for your input!