Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Data Formatters temporarily unavailable

Im trying to use Date Formatters (NSDateFormatter), but I keep getting this error:

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")
like image 739
Zac Altman Avatar asked Apr 04 '10 03:04

Zac Altman


4 Answers

This is nothing to do with NSDateFormatter - the message pasted in saying "Data Formatters" is correct. You will get this message in several situations, possibly most commonly when unable to find a linked in shared library at launch time. You may also get it when short of memory while running, in which case start looking for leaks.

(not enough rep to comment).

like image 56
Paul Lynch Avatar answered Nov 18 '22 17:11

Paul Lynch


I've had the "Data Formatters temporarily unavailable..." problem when I put a breakpoint in an unusual position (such as on the exception handler). In the Debugger window, click on "Show Breakpoints" and see if you have something you forgot about -- I did.

like image 42
Mary Kay Avatar answered Nov 18 '22 17:11

Mary Kay


I had the same issue, building the code on 3.2 as target solved the problem. Maybe this can give a hint, as i am not happy with this solution.

like image 45
chewy Avatar answered Nov 18 '22 18:11

chewy


I just solved the same problem. Mine had to do with stack overflow (no pun intended ;-) since I was overriding a setter and calling the same setter from within, forming an endless recursion. Hope that helps.

like image 1
Michael Michailidis Avatar answered Nov 18 '22 17:11

Michael Michailidis