Pregunta

how could I check programmatically whether a NSFont contains a unicode character like '°'?

¿Fue útil?

Solución

Ok, try this:

NSFont *font = [NSFont fontWithName:@"Arial" size:14.0];
NSCharacterSet *set = [font coveredCharacterSet];
if (![set characterIsMember:[@"°" characterAtIndex:0]]) {
    NSLog(@"Failed");
} else {
    NSLog(@"Success");
}
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top