UIWebView 使用客户字体 TTF

发布于 2024-08-20 15:54:07 字数 222 浏览 3 评论 0原文

我想使用客户 ttf 字体作为 Web 视图的默认字体。 我希望使用 UTF8 字符显示 html 文档,并且它们需要特殊的字体 ttf 才能显示。顺便说一句,它们是 unicode 字符 在 Mac 上,我可以将默认字体更改为 xyz.ttf。在 iphone safari 上我无法设置后备默认字体。所以,我使用 UIWebview 和自定义 ttf 字体创建这个简单的应用程序。 想知道这是否可能?

谢谢大家

I want to use use a customer ttf font as the Web View's default font.
the html documents i wish to display using UTF8 characters and they needs a special font ttf to display. btw, they are unicode characters
on mac, i could change my default font to that xyz.ttf. on iphone safari i could not set default font for fallback. so, i am creating this simple app using UIWebview with custom ttf font.
Wondering if this is possible?

Thanks guys

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一梦等七年七年为一梦 2024-08-27 15:54:07

您可以使用@font-face,但需要将该字体转换为 svg。

you can use @font-face, but you need to convert that font to svg.

诗酒趁年少 2024-08-27 15:54:07
NSString *myDescriptionHTML = [NSString stringWithFormat:@"<html> \n"
                            "<head> \n"
                            "<style type=\"text/css\"> \n"
                            "body {font-family: \"%@\"; font-size: %@;}\n"
                            "</style> \n"
                            "</head> \n"
                            "<body>%@</body> \n"
                            "</html>", @"helvetica", [NSNumber numberWithInt:kFieldFontSize], content];

请检查上面的代码...

参考:代码

NSString *myDescriptionHTML = [NSString stringWithFormat:@"<html> \n"
                            "<head> \n"
                            "<style type=\"text/css\"> \n"
                            "body {font-family: \"%@\"; font-size: %@;}\n"
                            "</style> \n"
                            "</head> \n"
                            "<body>%@</body> \n"
                            "</html>", @"helvetica", [NSNumber numberWithInt:kFieldFontSize], content];

Please check above code...

reference : code

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文