what is the syntax for handle the exceptions in iphone sdk? how to handle the exceptions in iphone. what documentation to know more about? tutorial, sample code are most wanted and thankful.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Exceptions in Objective-C are quite a contentious issue, even Apple themselves discourage you from using them unless absolutely necessary.
My first question would be what do you want to achieve from the exception handling? If you’re looking from a Java perspective and how exceptions are so tightly integrated in that language for handling errors (i.e. flow control) then I think it’s unadvisable to use objective-c exceptions for this purpose, you need to use NSError and handle errors that way.
This is a snippet from Apples documentation: –