Xcode 断点测试
我在进行断点调试的时候newDemo was compiled with optimization - stepping may behave oddly; variables may not be available.
这种错误.再然后进行打印
error: Couldn't materialize: couldn't get the value of variable self: variable not available
error: errored out in DoExecute, couldn't PrepareToExecuteJITExpression
这种错误.为什么会出现这种错误?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
newDemo was compiled with optimization - stepping may behave oddly
说的是编译的时候做了优化,所以源代码和编译后的机器码没办法一一对应,断点调试使用机器码,对应不到,所以self变量找不到。编译的时候不要选择 Release (发布)模式。