-1

i am getting a serious issue

Program received signal: “EXC_BAD_ACCESS”. Data Formatters temporarily unavailable, will re-try after a 'continue'. (Unknown error loading shared library "/Developer/usr/lib/libXcodeDebuggerSupport.dylib") kill quit

The Debugger has exited with status 0.(gdb)

Note: Problem occurs when i am fetching approx more than 5000+ data on tableview (using Core data) If data is not huge then application doesnt crash.

Brad Larson
  • 170,088
  • 45
  • 397
  • 571
Tariq
  • 9,861
  • 12
  • 62
  • 103
  • This looks related to your earlier question: [Crashing issue due to memory management (using Core Data)](http://stackoverflow.com/q/4131356/19679). If you have additional information to supply, edit the original and don't repeat the same question. – Brad Larson Nov 09 '10 at 15:20

2 Answers2

1

EXC_BAD_ACCESS means: Exception Bad Access.

This is not a Core Data error. It is an exception from trying to access an object that has been released.

Turn on NSZombie, set a breakpoint on objc_exception_throw. Then run your app again in the debugger and track down the over-release.

Community
  • 1
  • 1
Marcus S. Zarra
  • 46,571
  • 9
  • 101
  • 182
0

Don't know, but it appears to be happening because of the amount of data you are loading. This sounds like a lot of data to be loading on an iPhone. Is there anyway you can reduce the volume? Perhaps you could create a table that contains summaries of your data. Or perhaps page load 20 or 30 records at a time rather than the full 5000.

drekka
  • 20,957
  • 14
  • 79
  • 135