Hello everyone,
Some issue cannot figure out, I run my program in the corona simulator all is well, when I build it for the iPhone
my backGround Image is not being picked up. Only my buttons are showing. Below is some separation code.
I even tried just using the image out of the folder it still does not work. Must be something else I am missing.
Any Help is much appreciated.
if (display.pixelHeight == 960) then
isIPhone4 = true
SplashImage = display.newImage(“BTestBackGrounds/timerBG640960.png”)
elseif (display.pixelHeight == 1136) then
isIPhone5 = true
SplashImage = display.newImage(“BTestBackGrounds/timerBG6401136.png”)
elseif (display.pixelHeight == 1334) then
isIPhone6 = true
SplashImage = display.newImage(“BTestBackGrounds/timerBG7501334.png”)
end
SplashImage.anchorX = 0
SplashImage.anchorY = 0
SplashImage.xAlign = contentWidth
SplashImage.yAlign = contentHeight
sceneGroup:insert(SplashImage)
Regards
JZ