I have a project where there are two views, in the first view I have a uitableview displayed. And when you select any of the cells in the row, another view opens.
In the first view there are 10 cells and each cell, when selected, opens another view consisting of at most 21 views and at least 1 view inside.
Each view in the second view consists of a table view of an array of images and many subzones in a tableview view (also an array of images is displayed inside a scroll with several types of images)
Now the problem is that I canβt free the memory allocation that I donβt know, because according to my code, all that is allocated is the release. I also tried instrumental ones, but this does not work.
Previously, when I visited only one view, it crashed the application, so I reduced the resolution of the images, and now it moves for almost 9 applications when another application is not open, otherwise it works for 6 views. Now I canβt even reduce the resolution of the images, because now it is of lower quality. So, how can I reduce this memory allocation, which does not support my application in the least and does not even free the occupied memory.
Make sure you are not responding with a sentence like instrumental leak because it is not useful. I need to know how to free up unused memory.

You can see that in one view there are three views, and this is the scroll bar, as you move by scrolling more views, and the image will be displayed on top, which is also a scroll bar. In addition, there is detailed information about the table. But when I create this view, I encounter a memory problem, so for this I free everything from this view, even I tried to delete the whole view during navigation. Please help me urgently. For this, I used the example "PagedFlowView"
https://github.com/kejinlu/PagedFlowView
The link above is for pagedflowview example, and the link below is for my code reference class that I implemented, please check my class and tell me where I can improve it.
http://www.4shared.com/file/rHmRDr2E/SwipeExerciseViewController.html
Thanks in advance and really carried away if you help me.