从IntPtr创建NSException

时间:2016-05-30 12:17:49

标签: c# ios xamarin.ios nsexception

我指的是post

private static void MyUncaughtExceptionHandler(IntPtr exception)
{
    // this is not working because NSException(IntPtr) is a protected constructor
    var e = new NSException(exception);
    // ...
}

如何在此处创建例外?

我应该这样做吗?

NSException exception = (NSException)ObjCRuntime.Runtime.GetNSObject(handle);

2 个答案:

答案 0 :(得分:1)

一种选择是创建NSException的自定义子类并公开受保护的构造函数。你的ObjCRuntime.Runtime.GetNSObject也应该有效(我认为 - 不是100%肯定)。

您可以创建一个非常简单的子类:

public MyNSException : NSException {
    public MyNSException(IntPtr handle) : base(handle) { }
}

然后你应该能够如此创建你的NSException

var exception = new MyNSException(exception);

我还没有尝试使用这些代码,但这应该让你编译。

答案 1 :(得分:1)

您自己找到了正确的答案:

NSException exception = (NSException) ObjCRuntime.Runtime.GetNSObject (handle);