This is more a nuisance than a real problem, but when I run a library, using NSException in the control flow, on the debugger, the program repeatedly stops on the NSException line like there were a breakpoint to finally proceed regularly without crashing. When I execute the app stand alone there is no appreciable effect. Is there a way to disable this annoying debug behavior. This is the simple handling function:
- (void) parse {
while (1) {
@try {
[self scanAttribute];
}
@catch (NSException *exception) {
return;
}
}
}
- (void) rejectWithReason:(NSString *)msg {
[NSException raise:@"MKDistinguishedNameParserException" format:@"%@", msg];
}