0

I am loading a remote url in WKWebview where only content is text. Text is loading properly but there in site they used 'Nunito' font, which is not showing here in my side. When i open url in browser text are showing properly with font even in safari borowser.

Here is my Code


let urlStr = "http://islamintel.com/cms/about-us"
            if let url = URL(string: urlStr) {
                let request = URLRequest(url: url)
                wkWebView.load(request)
            }

1 Answers1

0

You need to add custom font (i.e Nunito) in the app. Here is the reference link on how to load custom font in WKWebView.

Rachit Agarwal
  • 356
  • 2
  • 9