在网上找了下教程, 大多数都要获取字体文件的真实字体名,用起来比较麻烦.
在iOS7中,引入了UIFontDescriptor,so...可以这么写.
UIFontDescriptor *fontdesc = [UIFontDescriptor fontDescriptorWithFontAttributes:@{UIFontDescriptorVisibleNameAttribute : fontName}]; [_richTextView.textStorage addAttributes:@{NSFontAttributeName:[UIFont fontWithDescriptor:fontdesc size:font.pointSize]}
然而并没有什么卵用,谁能告诉我为什么?