I have updated UIWebView to WKWebView. Fonts are not getting applies you can check following attached screen shots.
Fonts .ttf files are added in project. also in Copy Bundle Resources.
self.webView.loadHTMLString(textHtml, baseURL: Bundle.main.bundleURL)
Added font-face in style.
@font-face
{
font-family: 'Lato-Bold';
src: url(Lato-Bold.ttf) format('truetype');
}
Using Xcode 11.3. Any missing link ?
Thanks in advance.