UIWebView 使用客户字体 TTF
我想使用客户 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用@font-face,但需要将该字体转换为 svg。
you can use @font-face, but you need to convert that font to svg.
请检查上面的代码...
参考:代码
Please check above code...
reference : code