gpt4 book ai didi

ios - WKWebView 禁用水平滚动和换行内容

转载 作者:行者123 更新时间:2023-12-05 07:31:16 39 4
gpt4 key购买 nike

下图中的这个“up up up up”是使用wkwebview加载的html字符串

webView?.loadHTMLString((currentLock?.text)!, baseURL: nil)

继续

func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) {
webView.scrollView.minimumZoomScale = 1.5
webView.scrollView.maximumZoomScale = 20
webView.scrollView.setZoomScale(1.5, animated: true)
}

现在我希望它只有垂直滚动和水平内容大小等于框架宽度。目前它的内容传播到完整的水平滚动我打算将它水平包装等于框架宽度并且只允许垂直滚动才能看到完整的消息。

enter image description here

最佳答案

try to add html content inside Paragraph to wrap it up. 

Eg: - <p> Add Html content inside the paragraph to wrap <math xmlns=“http://www.w3.org/1998/Math/MathML”><mfrac><mn>1</mn><mn>200</mn></mfrac><msqrt><mo>&#177;</mo><msup><mi>s</mi><mn>2</mn></msup></msqrt></math> </p>

如果用户正在加载 htmlString,我认为这解决了 Wkwebview 中的问题。

let htmlString = "<p>up up up up up up up up </p>"
webView?.loadHTMLString(htmlString, baseURL: nil)

关于ios - WKWebView 禁用水平滚动和换行内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51904147/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com