I found this article at Apple's Developer Documentation:
Understanding the Exception Types in a Crash Report
Anyone know where I can find specific documentation for the codes that go with each exception type?
I got a run time error during a debug run of my Xcode project for iOS at a line of code where I initialize a custom struct.
I want to look up what that "2" represents.
Thread 3: EXC_BAD_ACCESS (code=2, address=0x16dbc7ff0)
I think I found documentation at one time for those codes at another source outside of Apple. It seems there are codes that are used by hardware manufacturers for "architectures" such as "arm64" and "armv7". I see those in Xcode project build settings.
Do I really need to know what each code as given in the error message represent?
I found this documentation on Apple's Exception Handling Framework in a search with Google: Exception Handling. I don't see what I need. This framework seems to be more than I need at this time.