如何理解Xcode错误信息日志

发布于 2024-08-12 19:34:33 字数 255 浏览 6 评论 0原文

objc[1372]: FREED(id): message respondsToSelector: sent to freed object=0x43be3f0

当我尝试单击 UITableViewCell 并播放一些动作,然后按回键选择 UITableViewCell 的另一个索引并播放一些电影时出现该错误,我非常快地重复此步骤,它会让一些应用程序终止,

但我不明白该日志是哪一行它使崩溃

我怎么能理解呢?

objc[1372]: FREED(id): message respondsToSelector: sent to freed object=0x43be3f0

that error when i try to click on UITableViewCell and Play some move and then press back to select another index of UITableViewCell and play some movie, i repeat this step very fast and it will get some application terminate

but i dont understand about that log which line it make crash

how could i understand about it?

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

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

发布评论

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

评论(1

晨曦÷微暖 2024-08-19 19:34:33

您正在向已释放的 objc 对象发送消息。为了更轻松地调试,启用 NSZombies:

http://www.cocoadev.com/index.pl?NSZombieEnabled" rel="nofollow noreferrer">http://www.cocoadev.com/index.pl? NSZombie启用

You are messaging deallocated objc objects. To debug more easily, enable NSZombies:

http://www.cocoadev.com/index.pl?NSZombieEnabled

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