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 am working on a TabBar based application. At some point I am doing: if([[[appDelegate.tabBarController viewControllers] objectAtIndex:1] isKindOfClass:[UINavigationController class]]) { UINavigationController *navController = [[appDelegate.tabBarController viewControllers] objectAtIndex:1]; [navController popToRootViewControllerAnimated:NO]; } appDelegate.tabBarController.selectedIndex = 1; // CRASH HERE On iOS6 it is working fine but when I build the application with XCode5 / [...] read more