I got this Crash often Can you please help me to find out solution
Incident Identifier: BC2870F3-4119-462B-9B2E-2236E403E7C2
CrashReporter Key: 7d9cc50413d
This is an EXC_BAD_ACCESS type of code which relates to accessing deallocated memory. In order to find this you need to enable NSZombie objects. Press Option + Command + R and select the "Diagnostics" tab. Finally, click "Enable Zombie Objects". This should make the compiler stop on the line of code that is causing this crash.
Most likely you have released an object and then tried to access it afterwards.