
I try to load Second view in MainView with define frame size but don’t need to see component of second view. I set size till it weel be appear.
-(IBAction)displayNewView:(id)sender {
[mrView setFrame:CGRectMake(0,150,320,50)];
[self.view addSubview:mrView];
}

i dont want to see second button.
Hey, I solved this issue by checking “Clip Subviews”.
It will crop rest of the part of view which will not display.
Nice Question with basic issue.
Thanks.