Okay I noticed that when you remove and image using
obj:removeSelf()
and you check it using
if(obj) then
--Do something
end
it will always return true until you set obj to nil. Is there a way to check if the obj has been removed but not set to nil? I have an instance where I need to remove the image but not set it to nil but I also need to check if it exists.
Thanks