欢迎光临
我们一直在努力

iOS App动态获得新字体

建站超值云服务器,限时71元/月

iOS App动态获得新字体

项目介绍:

第三方字体管理库 Fonty

使用场景

你希望在iOS App为用户提供第三方字体,但是不想把字体文件直接加进bundle导致安装包的体积增加。

主要操作

1 准备

准备几个可以下载的字体文件地址,例如https://github.com/s2mh/FontFile/raw/master/Chinese/Simplified%20Chinese/ttc/Xingkai.ttc。可以是ttf、otf或ttc格式。

2 导入

将Fonty库导入到你的工程中。你可以直接手动导入Fonty文件夹,也可以使用CocoaPods:

target 'TargetName' do
pod 'Fonty'
end

使用时所需的头文件:

#import "Fonty.h"

3 配置

在AppDelegate中,将准备好的字体文件地址配置给Fonty:

 [FYFontManager setFileURLStrings:@[@"https://github.com/s2mh/FontFile/raw/master/Chinese/Simplified%20Chinese/ttc/Xingkai.ttc",
                                    @"https://github.com/s2mh/FontFile/raw/master/Common/Bold/LiHeiPro.ttf",
                                    @"https://github.com/s2mh/FontFile/raw/master/English/Bold/Luminari.ttf",
                                    @"https://github.com/s2mh/FontFile/raw/master/Common/Regular/YuppySC-Regular.otf"]];

FYFontManager(用于管理字体文件)会据此生成对应的FYFontFile对象(用于描述字体文件信息):

NSArray<FYFontFile *> *fontFiles = [FYFontManager fontFiles];

4 下载&注册

用FYFontManager的下载字体文件:

[FYFontManager downloadFontFile:file];

下载完成后,Fonty会自动保存和注册字体文件。注册成功后,Fonty会发出FYFontFileRegisteringDidCompleteNotification通知。该通知包含已注册的文件:

- (void)completeFile:(NSNotification *)notification {
    FYFontFile *file = [notification.userInfo objectForKey:FYFontFileNotificationUserInfoKey];
    ...
}

注意:ttf和otf文件包含一种字体,ttc文件可能包含多个字体。

5 获得字体

已注册的字体文件包含一个FYFontModel对象数组,一个FYFontModel代表一种字体。可以直接从FYFontModel中获得字体:

FYFontModel *model = file.fontModels[0];
UIFont *font = [model.font fontWithSize:17.0];

也可以设置FYFontManager的mainFont,通过UIFont (FY_Fonty)分类的方法,便捷地获得字体:

[FYFontManager setMainFont:font];
...

textView.font = [UIFont fy_mainFontWithSize:17.0];

6 存档

在应用关闭前保存设置的信息,可保证每次应用下次启动后使用同样的字体。

[FYFontManager archive];

Demo演示

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » iOS App动态获得新字体
分享到: 更多 (0)