每当我按下build时,它会给我SIGABORT符号并返回代码。 我是否需要可用的故事板视图或没有它我可以在调试区域中看到输出
我使用的代码是
for (PokemonAbility *theability in items) {
NSLog(@"Number: %@ Name: %@ Generation: %@ Desc: %@",theability.rowid, theability.abilityname, theability.abilitygeneration, theability.abilitydesc);
}
参考: Code Reference
答案 0 :(得分:1)
很难说你写了什么,但我敢打赌,你正在使用来自SQLite的原始数据,这是一个C字符串,并在NSLog中使用它作为NSString。试试
[NSString stringWithCString:theability.rowid];
等