更改标签“Comic-Sans-Ms”的字体
我认为这是一个非常基本的问题,但我尝试了很多方法来更改 UILabel 的字体 我尝试了这个代码
lbl = [[UILabel alloc] initWithFrame:CGRectMake(10, 10, 300, 100)];
[lbl setText:@"Demo Text"];
[lbl setFont:[UIFont fontWithName:@"Comic-Sans-Ms" size:20]];
,但它不起作用,你能告诉我为什么我的标签中没有“Comic Sans Ms”字体吗?使用此代码,其他字体可以正常工作,但我不知道“Comic-Sans-MS”有什么问题,
谢谢..
i think this is really basic question but i try many way to change the font of UILabel
i try this code
lbl = [[UILabel alloc] initWithFrame:CGRectMake(10, 10, 300, 100)];
[lbl setText:@"Demo Text"];
[lbl setFont:[UIFont fontWithName:@"Comic-Sans-Ms" size:20]];
but it's not work can you please tell me why i am not getting "Comic Sans Ms" font in my label. with this code other font are working but i don't know what is problem with "Comic-Sans-MS"
Thanks..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用自定义字体。
Use custom fonts.
我猜这是iOS?这是因为 iOS 上未安装 Comic Sans。
I take it this is iOS? It would then be because Comic Sans is not installed on iOS.