我想在运行时将自定义字体添加到 IOS 应用程序,并在可编辑的文本区域或 contentEditable="on" 的 UIWebView 中使用它。
我知道您如何在编译时捆绑自定义字体,但我需要在运行时执行此操作。
这些替代方案是否可能:
- 通过 Internet 下载字体并存储在应用程序文档文件夹中?
- 使用 http 地址引用外部字体?
- 通过 iTunes 传输字体?
iOS6 中的标签和富文本编辑有很多改进,我希望自定义字体支持也得到改进。
回答我自己的问题。
我还没有找到一种方法来使用 iOS 中的本机 textarea 而不在 plist 文件中注册字体。
然而,UIWebView 确实支持 @font-face 声明和 .ttf 文件。诀窍是创建一个指向存储在 Documents 文件夹中的字体的 NSURL,然后使用 [webView stringByEvaluatingJavaScriptFromString] 告诉 Web 视图使用它。
在我的第一次测试中,我做了这样的事情:
我的视图控制器:
- (NSString *)documentsDirectory {
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
NSUserDomainMask, YES);
return [paths objectAtIndex:0];
}
- (void) setFont {
NSString *urlPath = [[self documentsDirectory]
stringByAppendingPathComponent:@"myfont.ttf"];
NSURL *url = [NSURL fileURLWithPath:urlPath];
[self.webView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"setFont('%@');", url]];
}
在我的网页中:
<style>
body {
font-family: customfont;
font-size: 40px;
}
</style>
<script>
function setFont(font) {
var id = 'customfont',
head = document.getElementsByTagName("head")[0],
style;
style = document.getElementById(id);
if(style) {
head.removeChild(style);
}
style = document.createElement("style");
style.setAttribute("id", id);
style.textContent = "@font-face { font-family: '" + id + "'; src: url('" + font + "'); font-weight: normal; font-style: normal; }"
head.appendChild(style);
}
</script>