UIFont

作者: 风冰武 | 来源:发表于2019-02-11 16:51 被阅读0次
//用于获取和设置字体信息的接口          18行
@interface UIFont : NSObject <NSCopying>

//创建并返回指定字体名称和大小的字体对象          26行
//参数1: 字体的完整名称
//参数2: 字体大小
//返回: 指定名称和大小的字体对象
+ (nullable UIFont *)fontWithName:(NSString *)fontName size:(CGFloat)fontSize;

相关文章

  • 设置镂空文字

    UIFont *font = [UIFont boldSystemFontOfSize:20]; UICol...

  • swift html字符串转富文本

    func attributedString(font: UIFont = UIFont.systemFont(of...

  • YYLabel 设置 baseline 没有效果

    改成 设置 UIFont * nameFont = [UIFont yb_PingFangOfSize:14];U...

  • 导航条设置

    //导航条统一设置 UIFont *font = [UIFont fontWithName:@"Helveti...

  • 无标题文章

    //需要判断是否登录 NSString *str = @"866.44"; //设置字体UIFont UIFont...

  • UIFont

    UIFont(字体) 父类是NSObject UIFont常用方法 系统默认字体(参数是多少号字)label.fo...

  • UIFont

    UIFont的主要属性列表 属性名/类型 获得字体的family名称例:NSString *str = font....

  • UIFont

  • UIFont

    引用:https://blog.csdn.net/a_horse/article/details/83057075...

  • UIFont

    IOS使用第三方字体(ttf/otf)https://www.jianshu.com/p/55ace1bdab3b...

网友评论

    本文标题:UIFont

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