如何使用NSLog命令查看从调试区域中的.SQLITE数据库中检索到的数据?

时间:2011-12-13 02:59:35

标签: iphone ios xcode4.2

每当我按下build时,它会给我SIGABORT符号并返回代码。 我是否需要可用的故事板视图或没有它我可以在调试区域中看到输出

我使用的代码是

for (PokemonAbility *theability in items) {

 NSLog(@"Number: %@  Name: %@ Generation: %@ Desc: %@",theability.rowid, theability.abilityname, theability.abilitygeneration, theability.abilitydesc);

 }

参考: Code Reference

1 个答案:

答案 0 :(得分:1)

很难说你写了什么,但我敢打赌,你正在使用来自SQLite的原始数据,这是一个C字符串,并在NSLog中使用它作为NSString。试试

[NSString stringWithCString:theability.rowid];