I have a super view, which has 2 subviews. These subviews are overlapped.
Whenever i choose a view from a menu, corresponding view should become the front view and h
You can achieve this by just adding the view again; it will not create another instance of it.
[self addSubview:viewToBeMadeForemost];
You can Log the number of subviews before and after this line of code is executed.