如何理解Xcode错误信息日志
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在向已释放的 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