UIApplicationMain 中的 EXC_BAD_ACCESS
我收到此错误:
int retVal = UIApplicationMain(argc, argv, nil, nil);
问题出在哪里?
I am getting this error in line:
int retVal = UIApplicationMain(argc, argv, nil, nil);
Where can be the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您很可能正在向已释放对象的内存地址发送消息。
此类内存问题并不总是在错误发生时出现。
查看打开 NSZombies 作为发现问题的第一步。
You're sending a message to a memory address of an already released object, most likely.
Such memory problems don't always show up at the point that the error occurred.
Have a look at turning on NSZombies as a first step towards finding the problem.