Skip to content

Instantly share code, notes, and snippets.

@rolfbjarne
Created October 7, 2013 08:55
Show Gist options
  • Save rolfbjarne/544c6990ee52e43f6c9a to your computer and use it in GitHub Desktop.
Save rolfbjarne/544c6990ee52e43f6c9a to your computer and use it in GitHub Desktop.
using MonoTouch.ObjCRuntime;
static string GetTrace (MonoTouch.Foundation.MonoTouchException mex)
{
var ptr = Messaging.intptr_objc_msgSend (mex.NSException.Handle, Selector.GetHandle ("callStackSymbols"));
var arr = NSArray.StringArrayFromHandle (ptr);
return string.Join ("\n", arr);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment