When deploying the application to the device, the program will quit after a few cycles with the following error:
Program received signal: \"EXC_BAD_ACCESS\".
Don't forget the @ symbol when creating strings, treating C-strings as NSStrings will cause EXC_BAD_ACCESS.
@
C-strings
NSStrings
EXC_BAD_ACCESS
Use this:
@"Some String"
Rather than this:
"Some String"
PS - typically when populating contents of an array with lots of records.
array