数据格式化程序暂时不可用

问题描述:

我试图使用日期格式化程序(NSDateFormatter),但我一直收到此错误:

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")


这与NSDateFormatter无关 - 粘贴在数据格式化程序中的消息是正确的。您将在几种情况下收到此消息,最常见的情况是在启动时无法在共享库中找到链接时。当运行时内存不足时你也可以得到它,在这种情况下开始寻找泄漏。

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).