标签:
在网上找了下教程, 大多数都要获取字体文件的真实字体名,用起来比较麻烦.
在iOS7中,引入了UIFontDescriptor,so...可以这么写.
UIFontDescriptor *fontdesc = [UIFontDescriptor fontDescriptorWithFontAttributes:@{UIFontDescriptorVisibleNameAttribute : fontName}]; [_richTextView.textStorage addAttributes:@{NSFontAttributeName:[UIFont fontWithDescriptor:fontdesc size:font.pointSize]}
标签:
原文地址:http://www.cnblogs.com/congliang/p/4810096.html