如何在monotouch / ios中捕获所有崩溃异常?

时间:2012-10-20 06:13:30

标签: exception xamarin.ios

我已经在main.cs中包装了日志代码以捕获异常,但是通过monotouch构建的应用程序通常在iPad中崩溃,我找不到任何日志。 (某些代码包含多线程操作和wcf服务)

如何捕获所有崩溃异常?

public class Application
{
    // This is the main entry point of the application.
    static void Main (string[] args)
    {
        // if you want to use a different Application Delegate class from "AppDelegate"
        // you can specify it here.
        try
        {
            UIApplication.Main (args, null, "AppDelegate");
        }
        catch (Exception ex)
        {
            Util.LogException("Main",ex);
        }
    }
}

1 个答案:

答案 0 :(得分:5)

本机崩溃无法转换为托管异常(进程状态无效,因此无法安全继续)。

有两种类型的信息可以帮助您(或帮助他人帮助您)弄清楚发生了什么:

  • 崩溃报告。
  • 设备日志。

您可以在Xcode的管理器中找到崩溃报告,并在MonoDevelop的iOS设备日志簿中找到设备日志。 Here is a more detailed description如何找到每个。