Typesetting a font in small caps on iOS

后端 未结 2 1694
情书的邮戳
情书的邮戳 2020-12-24 09:06

On iOS, I load a custom font in my project by adding its file name (an .otf file) to the info.plist file and then using this line of code:

UIFont myF

2条回答
  •  一生所求
    2020-12-24 10:03

    Small caps are enabled in the font through an open type feature. In iOS 7 we can use a font descriptor to access open type features and enable small caps.

    This question goes into how to turn on small caps using core text, but the same can be done for UIFonts and UIKit views just as easily. You'll need to create a UIFontDescriptor and set the UIFontDescriptorFeatureSettingsAttribute to an array of dictionaries for the features you want to enable.

    Each font feature dictionary contains a key and value to specify the feature type, and a key and value for the feature selector. Depending on the font you're using, you'll need to find the correct values corresponding to small caps. You can find these in the array that the commented section logs.

    UIFont Category

    This category will generate a UIFont object with small caps enabled. You'll need to add the correct font name.

    #import "UIFont+SmallCaps.h"
    #import 
    
    @implementation UIFont (SmallCaps)
    
    + (UIFont *) applicationSmallCapsFontWithSize:(CGFloat) size {
        /*
        // Use this to log all of the properties for a particular font
        UIFont *font = [UIFont fontWithName: fontName size: fontSize];
        CFArrayRef  fontProperties  =  CTFontCopyFeatures ( ( __bridge CTFontRef ) font ) ;
        NSLog(@"properties = %@", fontProperties);
        */
    
        NSArray *fontFeatureSettings = @[ @{ UIFontFeatureTypeIdentifierKey: @(kLowerCaseType),
                                             UIFontFeatureSelectorIdentifierKey : @(kLowerCaseSmallCapsSelector) } ];
    
        NSDictionary *fontAttributes = @{ UIFontDescriptorFeatureSettingsAttribute: fontFeatureSettings ,
                                          UIFontDescriptorNameAttribute: FONT_NAME } ;
    
        UIFontDescriptor *fontDescriptor = [ [UIFontDescriptor alloc] initWithFontAttributes: fontAttributes ];
    
        return [UIFont fontWithDescriptor:fontDescriptor size:size];
    }
    
    @end
    

提交回复
热议问题