我如何知道放大镜何时出现在 UIWebView 中?
如何检测 UIWebView 中何时出现放大镜?
How I can detect when the magnifying glass comes up in a UIWebView?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何检测 UIWebView 中何时出现放大镜?
How I can detect when the magnifying glass comes up in a UIWebView?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
假设您正在编写一个要在应用程序商店上发布的应用程序,则不能 - UIWebView 的结构对您来说是不透明的,并且您无法深入了解其组成部分。虽然我怀疑可以深入了解其结构并准确找出何时触发的内容,但您面临着很大的风险,Apple 将在后续操作系统更新中更改 UIWebView 的结构并破坏您的应用程序。
因此,除非您要走出公共 API(从而通过应用商店以外的渠道提供),否则我担心您可能会运气不好。
Assuming you're writing an app to release on the app store, you can't - the structure of a UIWebView is opaque to you, and you can't drill down into its component parts. Whilst I suspect it would be possible to descend into its structure and figure out exactly what was getting triggered when, you run a very large risk that Apple will change UIWebView's structure in a subsequent OS update and break your app.
So unless you're going outside of the public API (and thus making available through channels other than the app store) I'm afraid you may be out of luck.