我在资源中有一个字体并将其加载到 UIFont 中
I have a font in the resources and I loaded it into a UIFont
我想知道如何使用这个 UIFont 作为我的 UIWebView 的默认字体
I want to know how to use this UIFont as the default font for my UIWebView
提前谢谢...
如果你是使用网页在WebView中显示
If you are using webpage to display in the WebView
这是我要做的:
追加所有字符串并从字符串加载WebView
Append all the strings and load WebView from string
NSString *bundlepath = [[NSBundle mainBundle] bundlePath];
NSURL *baseURL = [NSURL fileURLWithPath:bundlepath];
[webView loadHTMLString:html baseURL:baseURL];
这篇关于如何在 UIWebView 中设置自定义字体?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!