我是一个UIButton的子类,我想用自定义字体绘制文字。
我已将字体文件添加到p.list和我的包中,但是当调用drawrect:方法时,不会绘制文本,我使用
NSDictionary* textFontAttributes = @{NSFontAttributeName: [UIFont fontWithName:@"Roboto-Bold" size:10.0], NSForegroundColorAttributeName: color0, NSParagraphStyleAttributeName: textStyle};
[@"FINISH WATCHING\n" drawInRect: textRect withAttributes: textFontAttributes];
如果我使用系统已知的字体,它绘制没有问题。
有什么建议吗? 感谢