@try {
NSString *a = [NSString string];
[a ggg];
}
@catch (NSException * e) {
self.user_name = nil;
}
why I can not catch the NSInvalidArgumentException in iphone os?
@try {
NSString *a = [NSString string];
[a ggg];
}
@catch (NSException * e) {
self.user_name = nil;
}
why I can not catch the NSInvalidArgumentException in iphone os?