Skip to content

Instantly share code, notes, and snippets.

@HeshamMegid
Created September 28, 2013 19:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HeshamMegid/6745678 to your computer and use it in GitHub Desktop.
Save HeshamMegid/6745678 to your computer and use it in GitHub Desktop.
Transliteration using CFStringTransform
NSMutableString *string = [@"جمهورية مصر العربيه" mutableCopy];
CFStringTransform((__bridge CFMutableStringRef)string, NULL, kCFStringTransformToLatin, NO);
NSLog(@"%@", string);
// Outputs jmhwryẗ mṣr ạlʿrbyh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment