gpt4 book ai didi

ios - 如何从文件(而不是 info.plist)在 iOS 应用程序中加载自定义字体?

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

我想知道在我的控件(UILabel、UIButton 等)中使用字体之前,是否可以将文件(例如,Internet URL)中的字体加载到我的 iOS 应用程序中。我已经知道预先打包它并在 info.plist 中引用的常用技术,但我正在寻找一个不太静态的选项......可行吗?

谢谢!

最佳答案

是的。绝对有可能。您需要查看 CTFontManagerRegisterGraphicsFont

这是一个用法示例:

NSData *inData = /* your decrypted font-file data */;
CFErrorRef error;
CGDataProviderRef provider = CGDataProviderCreateWithCFData((CFDataRef)inData);
CGFontRef font = CGFontCreateWithDataProvider(provider);
if (! CTFontManagerRegisterGraphicsFont(font, &error)) {
CFStringRef errorDescription = CFErrorCopyDescription(error)
NSLog(@"Failed to load font: %@", errorDescription);
CFRelease(errorDescription);
}
CFRelease(font);
CFRelease(provider);

快速版本:

func loadFont(_ name: String) -> Bool {
let bundle = Bundle(for: self)
guard let fontPath = bundle.path(forResource: name, ofType: "ttf"),
let data = try? Data(contentsOf: URL(fileURLWithPath: fontPath)),
let provider = CGDataProvider(data: data as CFData)
else {
return false
}

let font = CGFont(provider)
var error: Unmanaged<CFError>?

let success = CTFontManagerRegisterGraphicsFont(font, &error)
if !success {
print("Error loading font. Font is possibly already registered.")
return false
}

return true
}

https://marco.org/2012/12/21/ios-dynamic-font-loading

关于ios - 如何从文件(而不是 info.plist)在 iOS 应用程序中加载自定义字体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40508041/

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