How would I go about setting different font properties for the degree symbol in this string?
https://i.stack.imgur.com/GaDu6.png
I am currently setting the value like this:
currentTemp.text = [NSString stringWithFormat:@"%d°", [result[@"main"][@"temp"] intValue]];
And setting my font this way:
currentTemp.font = [UIFont fontWithName:@"HelveticaNeue-UltraLight" size:80];
Thanks for your help.