gpt4 book ai didi

iphone - 在 iOS 中,是否可以在运行时向应用程序添加字体?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:22:48 25 4
gpt4 key购买 nike

在我的应用程序中,我想让用户下载和使用字体,但我不知道如何动态执行此操作。我知道我们必须在应用程序的 Info.plist 文件中指定要使用的字体,但我们无法以编程方式向该 plist 文件添加任何内容。有 zynga 的库,但它是 UILabel 的子类。

请帮忙

最佳答案

是的,这是可能的:

/**
Downloads a `.ttf` file from an URL and creates an UIFont.

- Parameter url: The URL of the `.ttf` file.

- Precondition: The URL Session must be previously configured at ease.
*/
fileprivate func setFont(url: URL) {
// Download the font file in .ttf format.
dataTask = urlSession?.dataTask(with: url,
completionHandler: { [weak self] (data, response, error) in
guard error == nil,
let data = data,
(response as? HTTPURLResponse)?.statusCode == 200,
// Create a Font Descriptor from the raw data.
let ctFontDescriptor = CTFontManagerCreateFontDescriptorFromData(data as CFData) else {
// Error during the download of the .ttf file.
self?.error()
return
}
// Create CTFont from the Font Descriptor and convert it to UIFont.
let font: UIFont = CTFontCreateWithFontDescriptor(ctFontDescriptor, 0.0, nil) as UIFont
// Do whatever you want with the UIFont :)
self?.success(font: font)
})
dataTask?.resume()
}

使用此代码,您可以从 Internet 下载包含字体的 .ttf 文件(您可以从任何其他来源获取该文件)并将其用作 UIFont。

关于iphone - 在 iOS 中,是否可以在运行时向应用程序添加字体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9821211/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com