I created a UIScrollView
inside a UIView
.
The problem now is that when I scroll it, it goes all the way up until it is outside the frame.
Frame:
[self.deliveryForm setFrame:CGRectMake(24, 330, 273, 207)];
[self.deliveryForm setContentSize:CGSizeMake(273, 307)];
I do not want this:
What shall I do to fix this?
Thank you very much!