I\'m trying to determine if a string is latin based or Japanese.
I\'ve tried something like the following but it returns YES for Japanese strings as well:
Use the canBeConvertedToEncoding: method. For example:
BOOL isLatin = [myString canBeConvertedToEncoding:NSISOLatin1StringEncoding];
Available encodings are here.