長さが大きくなるアニメーション化された四角形があります。
[UIView animateWithDuration:60
animations:^{
CGRect frame = left.frame;
// adjust size of frame to desired value
frame.size.height -= 0.1;
left.frame = frame; // set frame on your view to the adjusted size
}
completion:^(BOOL finished){
// Re-start the animation if desired
}];
ただし、長方形は高さのみを変更するため、上向きではなく下向きになります。長方形が上に成長するように変更するにはどうすればよいですか?