
Objective-C Try / Catch Block
Used for trying to execute code that might generate an exception, and catching a resulting exception.
Sample:
@try {
//code
}
@catch (NSException *exception) {
//handler
}
@finally {
//statements
}
Objective-C Try / Catch Block
Used for trying to execute code that might generate an exception, and catching a resulting exception.
Sample:
@try {
//code
}
@catch (NSException *exception) {
//handler
}
@finally {
//statements
}
TUMBLR TUESDAY
Time again to recommend your favorite blogs for the directory!
Maybe this little playground of mine…
Or you may want to recommend the all new myPikks Tumblr…


