The exception handling mechanisms available to OBJECTIVE-C programs are effective ways of dealing with exceptional conditions. They decouple the detection and handling of these conditions and automate the propagation of the exception from the point of detection to the point of handling. As a result, your code can be much cleaner, easier to write correctly, and easier to maintain.
Looking for IOS Training? Mindmajix Offers Best IOS Developer Training With Industry Experts.
An exception is generated at runtime and these are runtime, error, objective c language as an exception handling syntax similar to c++, java and here we use NS exception, NS error.
An exception is a special condition but interrupts the normal flow of execution objective c has four exception compiler directives. They are.
@try
@catch
@finally
@throws
try black holds code that can potentially throw an exception that is enclosed in a try block.
Syntax:-
@try
{
Int x;
Scan f ( “%d”, &x);
Int y = 2/x;
}
A catch block contains exception handling logic for exception throw in a try block. We can have multiple catch block for single try block.
Syntax:-
@ catch (NS argument exception * aex)
{
}
@catch(NS exception * ex)
{
}
This block is optional and it contains a code for declaration of resources.
Syntax:-
@finally
{
}
Note:-
NS exception classes the base class for all the exception-related classes.
By using throws, we can rise over our own exception.
Frequently Asked iPhone Interview Questions & Answers
Name | Dates | |
---|---|---|
IOS Development Training | Jun 25 to Jul 10 | |
IOS Development Training | Jun 28 to Jul 13 | |
IOS Development Training | Jul 02 to Jul 17 | |
IOS Development Training | Jul 05 to Jul 20 |
I am Ruchitha, working as a content writer for MindMajix technologies. My writings focus on the latest technical software, tutorials, and innovations. I am also into research about AI and Neuromarketing. I am a media post-graduate from BCU – Birmingham, UK. Before, my writings focused on business articles on digital marketing and social media. You can connect with me on LinkedIn.
1 /15