I have an app in iOS that crashes as soon as I call a particular method (anywhere in the program) but before that method starts to execute. I put an NSLog at the very top of the method and it outputs a message that doesn't get sent before the app crashes.
The app crashes as soon as this method is referenced anywhere in the program. The method name is -(void) LaunchReel; and I have included it (obviously) in my header file as well. The program crashes with a EXC_BAD_ACCESS error and references an integer data type.
It crashes in the 0 objc_msgSend thread, and this error also occurs in the 2 __CFStringAppendFormatCore thread. I have no idea why this is occurring. Could it be a possible hung debugger process?