1

i am developing drawing application in ios. i am touchesmoved event continuos execute after some times crashed my application.but,it's not show error message console and shows (gdb) in console and project is running state it's shows by thread is paused.i am not bookmark statement's at any point..!

My state below screen shot

enter image description here

N_A
  • 19,799
  • 4
  • 52
  • 98
Dinesh
  • 6,500
  • 10
  • 42
  • 77

2 Answers2

3

Try Enabling NSZombie

It May Be EXE_BAD_EXCESS.

You can check how to enable zombie and many more to resolve crash issue in your application from the Following Link

  1. http://www.raywenderlich.com/10209/my-app-crashed-now-what-part-1

    2.https://stackoverflow.com/a/4917557/730776

Regards Neil

Community
  • 1
  • 1
NIKHIL
  • 2,719
  • 1
  • 26
  • 50
  • i am trying not error not display like EXE_BAD_EXCESS not showing thread is paused not show line..! – Dinesh Apr 21 '12 at 12:24
  • than you can add exception break point too.. it will stop at location where it going to crash – NIKHIL Apr 21 '12 at 12:52
1

Is your app launching (maybe with a black screen) at simulator/device launched? In short whats the device state. In my case it was not able to find the SDK and there was a popup in simulator window, which somehow got hidden and I was clueless for some time.

VijayKumar
  • 256
  • 1
  • 3
  • 10
  • My app runs a bit, it crash on setNeedsDisplay, I found this while debugging but I am not able to find its solution? – DivineDesert Jul 11 '12 at 05:09
  • If you can post some code of yours, maybe some mem leaks or pre-releasing of objects, just a wild guess for now... – VijayKumar Jul 11 '12 at 09:43