Hi All
I am using multiple views controlled by a single view controller in my project. My problem is, when I go from one view to the other memory does not get released.
I am using -
[currentView removeFromSuperview];
[currentView release];
NextView *nextView = [[NextView alloc] initWithFrame:CGRectMake(x1,y1,x2,y2)];
[masterViewController addSubView:nextView];
Please help