Skip to content

Instantly share code, notes, and snippets.

@mutekinootoko
Forked from fousa/content.m
Last active September 11, 2015 09:28
Show Gist options
  • Save mutekinootoko/b58c2dc8d8502d5df390 to your computer and use it in GitHub Desktop.
Save mutekinootoko/b58c2dc8d8502d5df390 to your computer and use it in GitHub Desktop.
Localize NSError
NSMutableDictionary *userInfo = [NSMutableDictionary dictionary];
[userInfo setObject:@"You are not authenticated." forKey:NSLocalizedDescriptionKey];
NSError *error = [NSError errorWithDomain:@"mydomain" code:0 userInfo:userInfo];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment