触发断点时应用程序退出,没有通知/错误
我刚刚升级到 MonoDevelop 和 MonoTouch 的最新版本,现在每当我尝试命中断点时,模拟器就会退出。应用程序也没有输出任何内容。还有其他人看到这个吗?
I just upgraded to the latest version of both MonoDevelop and MonoTouch and now whenever I try to hit a break point the simulator just exits. Nothing to the application output either. Anyone else seeing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的启动路径中有一个断点。 iOS 有一个看门狗,如果您没有在 10 秒内从 FinishedLaunching 返回,它将杀死您的应用程序。
You have a breakpoing in your startup path. iOS has a watchdog, and if you do not return from FinishedLaunching within 10 seconds it will kill your applicaiton.
我使用 MonoTouch 5.3.6(Alpha 版本)和 monodevelop 3.0.4.5 时遇到了同样的问题。我将尝试恢复到旧版本。如果我在应用程序中的任何位置有断点,就会出现问题。
更新
我找到了 TestFlight 的问题。我会在模拟器中经历非常奇怪的行为调试,例如应用程序中的任何断点都会导致应用程序退出。计时器和其他东西也无法正常工作。然而,在模拟器中进行发布效果很好。我希望这些信息对某人有所帮助。
I am seeing the same issue, using MonoTouch 5.3.6 (Alpha release) along with monodevelop 3.0.4.5. I am going to try and revert to a older version. My problem occurs if I have a breakpoint anywhere in the application.
Update
I tracked down the issue to TestFlight. I would experience very odd behavior debugging in the simulator, for instance any breakpoint in the application would cause the application to exit. Also timers and other things didn't work right. However doing a release in the simulator worked fine. I hope this information helps someone.