Hi, when I use storyboard to create a scene and include the image to the group i.e.
function scene:createScene(event) local group=self.view imageOne=display.newImage(group, "imageOne.png") end
does imageOne get automatically deleted when the storyboard exits or do I have to manually delete the image? If I do have to manually delete it, is it correct to use:
display.remove(imageOne); imageOne=nil
Thank you.