Quantcast
Browsing latest articles
Browse All 4 View Live

Answer by hasan for Unicode not working properly in iOS

NGUYEN MINH answer worked for me as follow:NSString *currencySymbol = @"\\u20AC";NSString *fair = @"1.99 ";NSString *convertedString = currencySymbol;CFStringRef transform =...

View Article


Answer by gnasher729 for Unicode not working properly in iOS

You are confusing the output of NSLog with the real data. \u20ac is how NSLog displays a Euro symbol, because the Euro symbol is the Unicode character u20ac.

View Article


Answer by NGUYEN MINH for Unicode not working properly in iOS

please try:NSString *convertedString = @"some text"; //Your unicode string hereCFStringRef transform = CFSTR("Any-Hex/Java");CFStringTransform((__bridge CFMutableStringRef)convertedString, NULL,...

View Article

Image may be NSFW.
Clik here to view.

Unicode not working properly in iOS

My unicode is \u20AC when I set it on UILabel but I'm getting unicode on label. Some time it is printing euro but mostly it is printing unicode on label.My code is over here NSLog(@"Currecy...

View Article
Browsing latest articles
Browse All 4 View Live