Cause of app Crash from Crash report

Can you help with determining what is cause of the crash in this crash report

Replies

Exception Type:  EXC_BREAKPOINT (SIGTRAP)

This indicates that your app crashed itself deliberately. This is most commonly caused by a Swift trap, for example, force unwrapping an optional that’s nil.

Thread 0 Crashed:
0 Chirp     … RecordResultVC2.displayEi3028() + 400
1 Chirp     … RecordResultVC2.displayEi3028() + 56
2 Chirp     … RecordResultVC2.handleAlarms() + 7992
3 Chirp     … RecordResultVC2.viewDidLoad() + 160
4 Chirp     … @objc RecordResultVC2.viewDidLoad() + 28
5 UIKitCore … -[UIViewController _sendViewDidLoadWithAppearanceProxyObjectTaggingEnabled] + 104

This shows that you crashed in your own code, running in respond to a view-did-load call.

To make further progress you’ll need to symbolicate your crash report, which will show you the link on which you crashed. See Adding Identifiable Symbol Names to a Crash Report.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Thanks for that Eskimo