use ARC in xocde. The app’s material page is like this:

The app runs well but when I swipe to the next page, the memory increase a lot (mostly 30k per page) as instrument allocation gives the following:

The detail is :

I don’t understand what’s going wrong? My env is : xcode 4.5.2, ARC enabled. Really appreciated someone can help me.
The heapshot is:

Then the heapshot detail :

I’m very sure that I removed all the view objects when swipe to the next page so the app should clean the memory of those view objects in the previous page. Just don’t know why these 304 bytes of objects increase the memory and what is wrong here .
This is seemingly a case of abandoned memory. Abandoned memory is not exactly leaking memory, in that you are not losing track of that memory. Rather it is memory that is not deallocated when it could/should be, so that overall memory usage increases.
Have a look at this article for a way of dealing with this using heapshot analysis in Instruments.
Another interesting, step-by-step discussion of the heapshot analysis method is here.