Hey,
Is it possible to use a non-standard OS X font with UIFont? I downloaded a font called 'crystal' which gives nice digital numbers and now I am trying to set the font of my label to use it:
This doesn't appear to work though. It may well be that I'm not referencing it by its full name - can I find that out somehow?
Cheers,
-Ross
Is it possible to use a non-standard OS X font with UIFont? I downloaded a font called 'crystal' which gives nice digital numbers and now I am trying to set the font of my label to use it:
Code:
UIFont *font - [UIFont fontWithName:@"Crystal" size:12.0];
[myLabel setFont:font];
This doesn't appear to work though. It may well be that I'm not referencing it by its full name - can I find that out somehow?
Cheers,
-Ross