I would write a small compact reusable method like this with a localized description ready for the world!
- (void)showError:(NSError*)error {
[[[UIAlertView alloc] initWithTitle:@"OH NOES! Did it died?" message:error.localizedDescription delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];
}
T