Developing iOS5 based cocoa app, below peice of comparison works fine if localization is English, but fails if localization is Korean.
//title is of type NSString
if([title isEqualToString:NSLocalizedString(@"Power",@"Power")])
in korean title and localized string is same visibly.
does isEqualToString: doesnot match Korean/unicode strings?
Just a guess.
I assume that it does not work in English to, but since you are using the english words in your
NSLocalizedString()the app uses them is default and that’s what make you think it works.The problem should be elsewhere.
Check if :
returns the korean translation.