I have a technical question. This is NOT a question about proper coding.
My question is TECHNICALLY is releasing objects on a programs exit/close needed?
In other words, lets say for the sake of argument, you have a button that closes your application, but right before you close you display a image, and then you close the application.
Do you TECHNICALLY need to release that image view before you close the application? Will the memory automatically be freed when the program exits, or if you don't release it will the memory stay somehow "active"?
I understand that you "should" release it, my question is about the technical side of it, and what happens behind the scenes.
Thank you.