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

发布于 2024-12-20 19:32:45 字数 436 浏览 0 评论 0原文

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

我使用的代码

for (PokemonAbility *theability in items) {

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

 }

引用自: 代码参考

Whenever when I press build, it would give me the SIGABORT sign and goes back to the code.
Do I need a usable storyboard view or without it I could see the output in the Debug Area

The code I used was

for (PokemonAbility *theability in items) {

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

 }

Referenced from:
Code Reference

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不交电费瞎发啥光 2024-12-27 19:32:45

很难从你写的内容中看出,但我敢打赌你正在使用来自 SQLite 的原始数据,它是一个 C 字符串,并在 NSLog 中将其用作 NSString。尝试

[NSString stringWithCString:theability.rowid];

等等。

Hard to tell from what you wrote, but I bet that you're using raw data from SQLite, which is a C string, and using it in NSLog as an NSString. Try

[NSString stringWithCString:theability.rowid];

etc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文