Handling ObjC Exceptions in a Single Point

Sometimes I get an exception from objective-c code. in my example, these exceptions are not critical, and I want the application to continue to work. The question is how to handle these exceptions?

for example, my application crashes from time to time while I use the GeoCoder class. I don’t care if the geocoder can geocode the location and would like to keep my application alive. including geocoder calls in try-catch blocks does not solve the problem.

Any help would be appreciated!

+5
source share
1 answer

MonoTouch ObjC . ObjC, . , , iOS try-catch , , - ( , , MonoTouch.

ObjC ( Apple , ObjC , - , ).

, ObjC, , . - : http://bugzilla.xamarin.com, .

+6

All Articles