[UIView animateWithDuration:30.0f delay:0.0f options:UIViewAnimationOptionCurveEaseInOut animations:^{
v.contentMode = UIViewContentModeScaleAspectFit;
v.frame = v.superview.bounds;
} completion:^(BOOL finished) {
[v removeFromSuperview];
}];
我想要一个 UIImageView 来调整大小和更改 contentMode,但是上面的代码不起作用。它在动画开始时立即更改了 contentMode。
有没有办法让它动起来?