Monotouch log options

When an iPhone or iPad application causes an error, what is the recommended way to retrieve data received using Monotouch?

+3
source share
1 answer

I just use Console.WriteLine and a small shell that helps me find a place and get additional information (like stacktrace, etc.).

Console.WriteLine in MT writes to the device’s console, so you can check it with the Organizer tool in Xcode, and it really works.

Not sure if this is the recommended approach, but I use it, it works well, and I personally can recommend it.

+3
source

All Articles