美文网首页
自定义字体引用

自定义字体引用

作者: Jelly_沫 | 来源:发表于2017-09-06 16:54 被阅读0次

    将字体路径导入工程

    工程会先注册字体

    -(UIFont*)customFontWithPath:(NSString*)path size:(CGFloat)size

    {

    NSURL *fontUrl = [NSURL fileURLWithPath:path];

    CGDataProviderRef fontDataProvider = CGDataProviderCreateWithURL((__bridge CFURLRef)fontUrl);

    CGFontRef fontRef = CGFontCreateWithDataProvider(fontDataProvider);

    CGDataProviderRelease(fontDataProvider);

    CTFontManagerRegisterGraphicsFont(fontRef, NULL);

    NSString *fontName = CFBridgingRelease(CGFontCopyPostScriptName(fontRef));

    UIFont *font = [UIFont fontWithName:fontName size:size];

    CGFontRelease(fontRef);

    return font;

    }

    相关文章

      网友评论

          本文标题:自定义字体引用

          本文链接:https://www.haomeiwen.com/subject/aorruttx.html