1
[UIView animateWithDuration:0.5 animations:^{
imageView.frame = self.view.bounds;
} completion:^(BOOL finished) {}];
どのように私はこれをCABasicanimationを使って書くことができますか?CABasicanimationを使用して画像を拡大する方法
[UIView animateWithDuration:0.5 animations:^{
imageView.frame = self.view.bounds;
} completion:^(BOOL finished) {}];
どのように私はこれをCABasicanimationを使って書くことができますか?CABasicanimationを使用して画像を拡大する方法
は、以下のあなたがUIImageView自体を使用して行うことができますズーム画像のための単純な実装
-(void)StartAnmation {
[subview.layer addAnimation:[self ZoomAnimation] forKey:@"Zoom"];
}
-(CAAnimationGroup *)ZoomAnimation {
CAAnimationGroup *ZoomAnimation = [CAAnimationGroup animation];
CABasicAnimation *In = [self zoomIn];
ZoomAnimation.animations = [NSArray arrayWithObjects: In, nil];
ZoomAnimation.duration = 2.0f;
return ZoomAnimation;
}
-(CABasicAnimation *)zoomIn {
CABasicAnimation *ZoomInAnimation = [CABasicAnimation animationWithKeyPath:@"transform.scale"];
ZoomInAnimation.beginTime = 0.0f;
ZoomInAnimation.fromValue = [NSNumber numberWithFloat:20.0];
ZoomInAnimation.toValue = [NSNumber numberWithFloat:1.0];
ZoomInAnimation.duration = 2.0f;
return ZoomInAnimation;
}
です。
回答を参照してください。Pinch To Zoom Effect on UIImageView inside scrollView