I have just a quick question here. In my app, I have a container-view, which displays different views, going back and forth many times. I noticed that the memory slowly gets eaten up for every time I go back and forth between views, even if they are the same ones. So I thought I should add some code to release the views. Then I read from some sources on stack overflow, that I should just leave it and IOS will handle it, and release views not needed anymore when the memory gets low. Others say I need to write code.
Currently, my app is just using 12mb, and rising by about 1mb for every time I change the view. Since this is a game, it will happen quite a lot. And the game will also become bigger in size.
What is your view on this?
Thanks.