Hi,
I'm making a music app and I've downloaded the great Bach font (
Bach, Musicological Font, Homepage). I've installed the font into the project and it shows up under [UIFont familyNames], but I can't make the musical notes appear. The character map shows each character under a four-digit number (ex. 0176 for a half note), or a regular character, such as @ for a flat sign.
I'm initializing a label in IB, then calling this code in viewDidLoad:
Code:
label.font = [UIFont fontWithName:@"Bach" size:20.0];
label.text = @"@";
However, it just shows the @ sign, not a flat.
How do I put the codes, like @ or 0176, in my code to make the flat sign or the half note show up on the iPhone screen?
Thanks!