I have an app that holds a lot of pictures and when the user browses them the live bytes in my app gets to max 88 mb.
firstly what does that me, The app doesnt crash, it gets a little slower. but is that 88mb in memory ?
Secondly I have a UIView which I set its view to an image depending on the number in the counter. Is there a way to release that previous image or at least only to keep 5 images in memory and release the rest ? e.g. keep -2 -1 0 1 2 , when 3 is called, release -2.
thanks