Ejemplo n.º 1
0
 public static void Error(NSException exception)
 {
     if (exception != null)
     {
         AlertManager.ShowAlert("Native Exception", exception.ToString(), "OK");
     }
 }
Ejemplo n.º 2
0
 public static void Error(NSException exception)
 {
     if (exception != null)
     {
         ErrorAction?.Invoke(exception.ToString());
     }
 }
Ejemplo n.º 3
0
        private static void MyUncaughtExceptionHandler(IntPtr exception)
        {
            var e = new NSException(exception);

            AppDelegate.HandleException(e.ToString());
        }
Ejemplo n.º 4
0
 private static void MyUncaughtExceptionHandler(IntPtr exception)
 {
     var e = new NSException(exception);
     AppDelegate.HandleException(e.ToString());
 }