UIWebView 在加载外部网站时以编程方式设置初始缩放比例?

2023-10-22移动开发问题
2

本文介绍了UIWebView 在加载外部网站时以编程方式设置初始缩放比例?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我想要做的是为外部网站设置初始缩放比例 [在某些情况下,内容偏移,但这并不重要].但在应用初始设置缩放和偏移后,用户应该能够更改它们,并且应用不应该干预.

What I want to do is set the initial zoom scale [and in some cases, content offset, but that is less important] for an external website. But after the app initially sets the zoom and offset, the user should be able to change them, and the app should not interfere.

这里提供了一些相关信息,这里和这里.但据我所知,没有一个能做我想要的.

Some related information is available here, here, and here. But as far as I can tell, none of does what I want.

meta 设置方法看起来很有希望——但是当我不控制将要加载的 html 内容时,我该如何设置呢?

The meta setting approach looks promising -- but how would I set it when I don't control the html content that will be loaded?

推荐答案

试试这个设置初始缩放级别 -

Try this for setting the initial zoom level -

[webView stringByEvaluatingJavaScriptFromString:@"document. body.style.zoom = 5.0;"];

另外不要忘记将 scalesPageToFit 设置为 NO,你就完成了.

Also dont forget to set scalesPageToFit to NO and you're done.

如果您将此设置为是",则网页会缩放以适应用户,并且用户可以放大和缩小.如果否,则禁用用户缩放.默认值为 NO.

If you set this to YES, the webpage is scaled to fit and the user can zoom in and zoom out. If NO, user zooming is disabled. The default value is NO.

这篇关于UIWebView 在加载外部网站时以编程方式设置初始缩放比例?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

硬件音量按钮更改应用程序音量
Hardware Volume buttons change in app volume(硬件音量按钮更改应用程序音量)...
2024-08-12 移动开发问题
10

Cocos2d - 如何检查不同层中对象之间的交集
Cocos2d - How to check for Intersection between objects in different layers(Cocos2d - 如何检查不同层中对象之间的交集)...
2024-08-12 移动开发问题
8

恢复游戏 cocos2d
Resume game cocos2d(恢复游戏 cocos2d)...
2024-08-12 移动开发问题
6

突出显示朗读文本(在 iPhone 的故事书类型应用程序中)
Highlight Read-Along Text (in a storybook type app for iPhone)(突出显示朗读文本(在 iPhone 的故事书类型应用程序中))...
2024-08-12 移动开发问题
9

Cocos2D + 仅禁用 Retina iPad 图形
Cocos2D + Disabling only Retina iPad Graphics(Cocos2D + 仅禁用 Retina iPad 图形)...
2024-08-12 移动开发问题
10

如何将 32 位 PNG 转换为 RGB565?
How to convert 32 bit PNG to RGB565?(如何将 32 位 PNG 转换为 RGB565?)...
2024-08-12 移动开发问题
21