I have a UILabel that I am modifying through code. However, when I create an NSString with charaters æ, ø, å (Danish), I get a warning about input conversion. The code is as follows:
NSString *label=[[NSString alloc]initWithFormat:@"Prøv igen"];
And the warning I get is a warning: the input conversion is stopped due to an input byte that does not belong to the UTF-8 input code. I can understand that ø is probably not UTF encoding, but what should I do? Anyone who can give me a hint on what to do to solve this problem?
Hello
Bjarke
source share