0
Apple支持使用理貨字體嗎? 我使用這個理貨從這裏:HTTP://www.subtangent.com/maths/resources.php我可以在UILabel中使用Tally標記字體嗎?
與此編碼:
UILabel *subtitle = [[UILabel alloc]initWithFrame:CGRectMake(125, 2, 185, 30)];
[subtitle setBackgroundColor:[UIColor clearColor]];
[subtitle setFont:[UIFont fontWithName:@"Tally_Regular.ttf" size:19.0]];
[subtitle setText:@"5"];
[subtitle setTextColor:[UIColor blackColor]];
[fLikeThis addSubview:subtitle];
但是它簡化版,按預期方式工作,不確定爲什麼我也在「應用程序提供的字體」中輸入了字體名稱。
感謝您的快速回復....是啊不工作...我猜是ttf文件有問題 – Desmond