菜鸟教程小白 发表于 2022-12-12 16:50:40

html - 在 iOS 中使 UIWebview 的字体加粗


                                            <p><p>如何将字体设置为粗体</p>

<pre><code> baseURL:nil];
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>Rafay 回答你的问题</p>

<pre><code>- (void)webViewDidFinishLoad:(UIWebView *)webView
{
   //Font size
   int fontSize = 80;
   NSString *jsString = [ initWithFormat:@&#34;document.getElementsByTagName(&#39;body&#39;).style.webkitTextSizeAdjust= &#39;%d%%&#39;&#34;, fontSize];
;
//Font Family Style - Bold
   NSString *jsWebViewFontFamilyString = [ initWithFormat:@&#34;document.getElementsByTagName(&#39;body&#39;).style.fontFamily = &#39;HelveticaNeue-Bold&#39;&#34;];
;
//Font Color or web view text color
.style.color = &#39;Green&#39;&#34;];

}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于html - 在 iOS 中使 UIWebview 的字体加粗,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/33417158/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/33417158/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: html - 在 iOS 中使 UIWebview 的字体加粗