i need help. i get white screen.
function scene:show( event )
local sceneGroup = self.view
if event.phase == “will” then
webView = native.newWebView( display.contentCenterX, display.contentCenterY + 20, display.actualContentWidth, display.actualContentHeight * 0.95 )
webView:request(“http://******.com” )
end
end
function scene:hide( event )
local sceneGroup = self.view
if event.phase == “will” then
if webView and webView.removeSelf then
webView:removeSelf()
webView = nil
end
end
end