首先,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];
原文地址:http://blog.csdn.net/junjun150013652/article/details/46007703