Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发基于 UIWebView 的 iPhone 应用程序(讨厌或喜欢它)。这个页面有一个固定的宽度和几乎静态的比例。我在这个页面上有一些输入文本字段,但是每当用户关注其中一个时,iPhone 就会放大一点。此外,我可以在 web 视图上进行捏合缩放。
我怎样才能避免这种情况?我有缩放:缩放页面以适合和查看模式:缩放以填充。
提前致谢。
您可以尝试在元标记中禁用它,如下所示:
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
它对我有用
webViewHome.multipleTouchEnabled = 否;
并在情节提要中将 wkwebview 属性集“Aspect Fit”从“Scales to fill”更改为“Aspect Fit”。