使文本适合 uiwebview

发布于 2024-12-05 02:50:09 字数 319 浏览 0 评论 0原文

您好,我正在 uiwebview 中显示多行文本。我使用这个而不是 uitextview 因为我显示一些奇特的符号,如度数、上标、下标等。我的问题是如何将所有文本放入 uiwebview 的固定宽度和高度内。假设我有一个 300x200 的 uiwebview,我希望所有文本都适合该视图。请参阅下图以了解我的问题。 http://i228.photobucket.com/albums/ee262/romano2717/photo.png

Hi I'm displaying a multiline text inside a uiwebview. I'm using this instead of uitextview coz Im displaying some fancy symbols like degrees, superscript, subscripts, etc. My question is how can I fit all the text inside a fixed width and height of the uiwebview. Say, I have a uiwebview of 300x200 I want all the text to fit inside that view. see the image below to see my problem.
http://i228.photobucket.com/albums/ee262/romano2717/photo.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

那支青花 2024-12-12 02:50:09

要调整高度和大小宽度试试这个 -

webView.autoresizingMask    = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight;
self.webView.autoresizesSubviews = YES;

//Incase the above does not work.
NSString *jsCommand = [NSString stringWithFormat:@"document.body.style.zoom = 0.5;"];
[self.webView stringByEvaluatingJavaScriptFromString:jsCommand];

希望这有帮助......

To resize the height & width try this -

webView.autoresizingMask    = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight;
self.webView.autoresizesSubviews = YES;

//Incase the above does not work.
NSString *jsCommand = [NSString stringWithFormat:@"document.body.style.zoom = 0.5;"];
[self.webView stringByEvaluatingJavaScriptFromString:jsCommand];

Hope this helps...

十二 2024-12-12 02:50:09

将 webView.scalesPageToFit 设置为 YES。

Set webView.scalesPageToFit to YES.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文