在Corona SDK中,我有一个显示广告的网页视图。
它在Android中完美运行,但在iOS中,网址不是点击或重定向。
这是一个网址示例
<a href="close://"><img src="btn_cancel.png" /></a>
这不会在iOS网页浏览中点击或重定向。
我需要返回我的网络视图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
中无法运行答案 0 :(得分:2)
找到我的问题
这是导致不加载链接的原因,因此我删除了条件。
if event.type == "loaded" then
...
end
它似乎不适用于iOS,但适用于Android