I saw some material on the web, but still can\'t quite get to where I want. I need to animate my view downwards, making it\'s height bigger.
Here is my code so far. What
clipsToBounds is the solution.
Explanation:
clipToBounds is a property that specifies if subviews should be cropped or not. So if a subview is bigger than its superview it will be cropped if you set "superview.clipToBounds=YES"
. In the case of this post the superview WAS resized but there was no visible difference for the user, because subviews were drawn even if they were outside of the frame.
It's a little bit tricky, because there is no visible link with the animation, but that's why THIS property makes the difference.