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
Can't you just change the frame within a UIView animation block. It looks like that CABasicAnimation is not required in this case.
[UIView beginAnimations:@"resize_animation" context:NULL]; // set your duration. a long duration is better to debug // 0.1 is really short to understand what is going wrong [UIView setAnimationDuration:2]; btnHead.frame = newFrame; [UIView commitAnimations];