iOS自定义字体(非中文字体自定义)
1.下载一个(.ttf)字体库,导入工程
2.在工程的(.plist)文件添加 “Fonts provided by application”
3.代码设置
cell.textLabel.font = [UIFont fontWithName:[UIFont fontNamesForFamilyName:[UIFont familyNames][indexPath.section]][indexPath.row] size:[UIFont systemFontSize]];
Demo下载地址:http://download.csdn.net/detail/u012460084/8741075
原文地址:http://blog.csdn.net/u012460084/article/details/46009059