0

I searched my level best to handle @try @catch in iphone application. But, i can not find the exact solution/sample for using @try and @catch statements from google. Can you please help me to implement @try and @catch in my code? Please help. Thanks in advance.

Yuvaraj.M
  • 9,741
  • 16
  • 71
  • 100

1 Answers1

1
@try {
    crashy code
} @catch (NSException *e) {
    no crash for me
} @finally {
    happens whether the code was successful or not
}
coneybeare
  • 33,113
  • 21
  • 131
  • 183