App is Crashing with "Message from debugger: Terminated due to signal 6" in Xcode 16

Since I updated my Xcode to Xcode 16 my app is constantly shutting down with "App is Crashing with "Message from debugger: Terminated due to signal 6"without any other errors or exceptions.

Any thoughts?

Signal 6 is SIGABRT, which likely means that something called abort() in your app. When this happens and you get that message in Xcode, you can review the thread backtraces in the debugger to see what aborted. Alternatively, you can enter the LLDB command detach, which will detach the debugger, and allow the app to continue to crash using normal means, resulting in a crash report that you can then review.

— Ed Ford,  DTS Engineer

App is Crashing with "Message from debugger: Terminated due to signal 6" in Xcode 16
 
 
Q