I’ve just developed a simple native web view and tested on my device with Default.png in place. But the thing is the launch image appears just about 2 seconds.
I want to make it a little longer? Say like 5-6 seconds? How to do so ? Any technique?
I’m using this method but it seem that it doesn’t work well:
launchImage = display.newImage(“Default.png”,true)
local launchImage = function(event)
launchImage:removeSelf()
launchImage = nil
end
timer.performWithDelay(5000, launchImage)
Hope that someone can help me to modify the code.