0
創建NSException我指的是這個post:從IntPtr的
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);