zoukankan      html  css  js  c++  java
  • iOS

    外加字体

    1.首先info.plist中加入属性Fonts provided by application,在item 0 处填写导入的ttf文件名

    eg:

    <key>UIAppFonts</key>

    <array>

    <string>方正兰亭纤黑简体.TTF</string>

    <string>FZXQJW_0.TTF</string>

    <string>CODE LIGHT.OTF</string>

    <string>CODE BOLD.OTF</string>

    <string>逐浪细阁体.otf</string>

    </array>

    然后在TAGECT中导入字体关联Compile Source

     

    2.查出你导入字体的font name   

    NSArray * fontArrays = [[NSArray alloc] initWithArray:[UIFont familyNames]];
        for (NSString * temp in fontArrays) {
            NSLog(@"Font name  = %@", temp);
        }


    3.就是这样简单的用了呗

        UILabel * tempTwoLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 100, 300, 40)];
        UIFont * fontTwo = [UIFont fontWithName:@"DFPWaWaW5-GB" size:15];
        [tempTwoLabel setFont:fontTwo];
        [tempTwoLabel setText:@"这是新字体——ONe----->华康娃娃体"];
        [self.view addSubview:tempTwoLabel]

    签 名:被别人嫉妒,说明你卓越;你嫉妒别人,说明你无能。 座右铭:抓紧一切时间睡觉。
  • 相关阅读:
    2020寒假简记
    感知神经网络模型与学习算法
    信息检索模型与评估
    Diffie-Hellman密钥交换
    RSA密码体制
    MySQL基准测试(benchmark)
    MySQL数据引擎
    MySQL 多版本并发控制(MVCC)
    MySQL事务管理
    利用dotnet restore 导入本地 .nupkg 包
  • 原文地址:https://www.cnblogs.com/baitongtong/p/5826392.html
Copyright © 2011-2022 走看看