2016-03-08 28 views
0

我的应用程序有时会因以下原因而崩溃。它来自SBJSON库。iOS应用程序崩溃:“在当前参数寄存器中找到的选择器名称:appendDictionary:into:”

Application Specific Information: 
Selector name found in current argument registers: appendDictionary:into: 

Thread 0 Crashed: 
0 MyApp       0x00000001006a5020 -[SBJsonWriter appendDictionary:into:] (SBJsonWriter.m:149) 
1 MyApp       0x00000001006a4b84 -[SBJsonWriter appendValue:into:] (SBJsonWriter.m:86) 
2 MyApp       0x00000001006a4998 -[SBJsonWriter stringWithFragment:] (SBJsonWriter.m:59) 
3 MyApp       0x00000001006a2dec -[NSObject(NSObject_SBJSON) JSONRepresentation] (NSObject+SBJSON.m:48) 

任何想法这意外是什么意思?请帮忙。

回答

0

我不知道为什么会出现错误,但我建议您升级SBJson的版本! (或切换到NSJSONSerialisation。)自您使用的版本以来,出现了许多许多错误修复。我删除了多年前堆栈跟踪中引用的NSObject + SBJSON.m文件。

相关问题