当 UIWebView 中弹出 OK-Cancel 警报时,如何自动单击取消?
我的 iPhone 应用程序的 UIWebView 出现问题...我收到一个带有“确定-取消”按钮选项的警报,我不希望用户看到这个...但网页会自动弹出发出警报。如何以编程方式检测警报已发出,以及如何单击警报上的取消按钮?
谢谢, 马特
I'm having a problem with my UIWebView for my iPhone App... I am getting an alert thrown up with OK-Cancel button options, and I don't want the user to see this... But the web page automatically pops up an alert. How can I programmatically detect the Alert was thrown up and how do I click the cancel button on the alert?
Thanks,
Matt
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在从 UIWebView 派生的类中,实现这些方法:
虽然没有严格记录,但您实际上并没有调用任何内容,因此它可能会被接受。
否则,您必须在加载的页面中找到发出警报的 JavaScript 并将其删除。
In a class derived from UIWebView, implement these methods:
While not strictly documented, you are not actually calling anything so it may be accepted.
Otherwise, you will have to find the javascript in the loaded page that is putting up the alert and remove it.