Question

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

Était-ce utile?

La solution

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");
}
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top