如何使用动画重新创建图像?
我有一个uiimageview,我希望它看起来像我们在1秒后放大到图像,持续1秒,但uiimageview的大小不能改变。
像这样但图像视图改变了它的大小:
[UIView animateKeyframesWithDuration:1
delay:0
options:UIViewKeyframeAnimationOptionBeginFromCurrentState
animations:^{
[UIView addKeyframeWithRelativeStartTime:0
relativeDuration:1
animations:^{
self.imageView.transform =CGAffineTransformMakeScale(1.1, 1.1);
}];
}
completion:^(BOOL finished) {
}];