does code in finally get run after a return in objective-c?
- by Kevlar
consider the following code:
@try {
  if (something.notvalid)
  {
    return;
  }
  // do something else
} @catch (NSException *ex) {
  // handle exception
} @finally {
  NSLog(@"finally!");
}
if something is not valid and i return from within the try, does the code in @finally execute or not?  I believe that it should but others I've spoken to don't think so and i'm unable to test this at the moment.