Quitting app causes error “Message from debugger: Terminated due to signal 9”

The “terminated due to signal 9” message just means your app was terminated by a SIGKILL signal. The OS sends that signal whenever your app is terminated involuntarily, whether it’s because of memory pressure (or several other reasons not relevant to this discussion), or the user explicitly killing your app by double tapping the Home … Read more