This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I have problem in following code. int i = 10; NSString *str; @try { //Error str = [[NSString alloc] initWithFormat:@"%@",i]; //Warning NSLog(@"%i",str); } @catch (id exception) { NSLog(@"Hello !!!"); } Please help me out how to handle exception in i/o operation. Thanks. Edited by Justin there's no suitable place for [...] read more