码迷,mamicode.com
首页 > 移动开发 > 详细

iOS通过ttf文件加载字体

时间:2015-05-26 16:13:26      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:ios   ttf文件导入字体   

首先,info.plist文件中添加Fonts provided by application属性,将ttf或者otf文件名加入到列表中,并将ttf或者otf文件添加到工程中;


其次,通过以下方法可以查看系统所有支持的字体名字,包括你刚才导入的。

  NSLog(@"Font names  = %@", [UIFont familyNames]);


最后,可以通过以下方法使用这些字体

  self.textLabel = [[UILabel alloc] init];
  self.textLabel.font = [UIFont fontWithName:@"Noto Sans" size:9];



iOS通过ttf文件加载字体

标签:ios   ttf文件导入字体   

原文地址:http://blog.csdn.net/junjun150013652/article/details/46007703

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!