gpt4 book ai didi

ios - 在IOS运行时添加字体到textarea或webview?

转载 作者:行者123 更新时间:2023-11-29 04:20:46 24 4
gpt4 key购买 nike

我想在运行时向 IOS 应用程序添加自定义字体,并在可编辑文本区域或 contentEditable="on"的 UIWebView 中使用它。

我知道如何在编译时捆绑自定义字体,但我需要在运行时执行此操作。

这些替代方案是否可行:

  • 通过互联网下载字体并将其存储在应用文档文件夹中?
  • 使用 http 地址引用外部字体?
  • 通过 iTunes 传输字体?

iOS6 中的标签和富文本编辑有了很多改进,我希望自定义字体支持也能得到改进。

最佳答案

回答我自己的问题。

我还没有找到一种方法,可以在 iOS 中使用 native 文本区域执行此操作,而无需在 plist 文件中注册字体。

但是,UIWebView 确实支持@font-face 声明和.ttf 文件。诀窍是创建一个指向存储在 Documents 文件夹中的字体的 NSURL,然后使用 [webView stringByEvaluatingJavaScriptFromString] 告诉 Web View 使用它。

在我的第一次测试中,我做了这样的事情:

我的 View Controller :

- (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>

关于ios - 在IOS运行时添加字体到textarea或webview?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13013580/

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