在 Corona SDK 中,我有一个显示广告的 web 视图。
它在 Android 中完美运行,但在 iOS 中,URL 没有点击或重定向。
这是一个 URL 示例
<a href="close://"><img src="btn_cancel.png" /></a>
这不会在 iOS 网络视图中单击或重定向。
我需要返回我的 webview 的事件监听器,event.url
它应该返回“ close://
”
所以我可以触发我的条件
function iosWebListener( event )
if event.type == "loaded" then
if 1 == string.find( event.url, "close://" ) then
webView:removeSelf()
webView = nil
end
end
end
这同样适用于 Android,但不适用于 iOS