WKWebView随机更改网站字体

WKWebView changes the fonts of website randomly

我正在 ios 应用程序中的 WKWebView 加载一个网页。但是 WKWebview 随机更改了我网页的所有字体。 UIWebView 以前从未发生过此问题。我需要在 XCode 中解决这个问题。我怎样才能确保在我的应用程序中加载了正确的字体。

我已经尝试在 XCode 中加载带有字体和 html 字符串的自定义字体。

        let htmlString = """
<style>
@font-face
{
    font-family: 'Tahoma';
    font-weight: normal;
    src: url(Tahoma Bold.ttf);
}
</style>
<span style="font-family: 'Tahoma'; font-weight: bold; font-size: 30; color: red">(Utils.aboutUsText)</span>
"""

    landingWebView.loadHTMLString(htmlString, baseURL: Bundle.main.bundleURL)

我希望 WKWebview 加载原始字体,我必须在 XCode 端实施解决方案。

问题出在网站端,其中包含来自外部 url 的字体。