2

UIViewiPhone アプリでは、長方形から円への変更など、の形状をどのようにアニメーション化しますか?

私は試してみました:

CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"path"];
animation.duration = 20.0;
animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
animation.fromValue = (__bridge_transfer id)aPath;
animation.toValue = (__bridge_transfer id)anotherPath;
[myShapeLayer addAnimation:animation forKey:@"animatePath"];

どこでととmyShapeLayerのインスタンスです。機能しますが、ビューのコンテンツもアニメーション化されません。CAShapeLayeraPathanotherPath CGMutablePathRef

ビューを円に変換し、それが消えるまで縮小する必要があります。

4

2 に答える 2

3

次のようなことを試してください: animeViewUIView はどこにありますか?

CABasicAnimation *anim1 = [CABasicAnimation animationWithKeyPath:@"cornerRadius"];
anim1.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear];
anim1.fromValue = [NSNumber numberWithFloat:0.0f];
anim1.toValue = [NSNumber numberWithFloat:50.0f]; //Half the size of your UIView
anim1.duration = 2.0;
[animeView.layer addAnimation:anim1 forKey:@"cornerRadius"];

[UIView animateWithDuration:10.0 delay:2 options:UIViewAnimationOptionCurveEaseInOut animations:^{

    animeView.layer.cornerRadius = 50; //Half the size of your UIView
    CGRect reduceRect = animeView.frame;
    reduceRect.size.height = 0;
    reduceRect.size.width = 0;
    [animeView setFrame:reduceRect];
    animeView.alpha = 0;
                    } completion:nil];

あちこちで微調整が必​​要かもしれません;-)

編集1:

では、2つ使用するのはどうUIView animationsですか?最初の意志shrinkstrechおよびmoveあなたの見解。2番目はshrink、あなたの見解ですslinkremove

[UIView animateWithDuration:2.0 delay:0.5 options:UIViewAnimationOptionCurveEaseIn animations:^{

    CGRect moveRect = animeView.frame;
    moveRect.origin.x = 0;
    moveRect.origin.y = (animeView.center.y -20); //Half the size of height reduction
    moveRect.size.height = (animeView.bounds.size.height -40); // height reduction
    moveRect.size.width = (animeView.bounds.size.width +20);
    [animeView setFrame:moveRect];

} completion:^(BOOL finished){
    [UIView animateWithDuration:2.0 delay:0 options:UIViewAnimationOptionCurveEaseIn animations:^{
        CGRect reduceRect = animeView.frame;
        reduceRect.size.height = 0;
        reduceRect.size.width = 0;
        reduceRect.origin.x = -50;
        reduceRect.origin.y = animeView.center.y;
        animeView.alpha = 0;
        [animeView setFrame:reduceRect];
    } completion:nil];

}];

編集2:

コメントでの質問への回答:

を作成することで、アニメーションを同時に実行できますCAAnimationGroup。また、画像を使用してresize of content効果を作成しています。例:

//Create a screenshot of your UIView... Still animeView in this example
UIGraphicsBeginImageContext(animeView.bounds.size);
CGContextRef context = UIGraphicsGetCurrentContext();
[animeView.layer renderInContext:context];
UIImage *screenShot = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

//Add the image as subview:
UIImageView * imageView = [[UIImageView alloc] initWithImage:screenShot];
[animeView addSubview:imageView];

//A cornerRadius animation:
CABasicAnimation *radiusAni = [CABasicAnimation animationWithKeyPath:@"cornerRadius"];
radiusAni.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear];
radiusAni.fromValue = [NSNumber numberWithFloat:0.0f];
radiusAni.toValue = [NSNumber numberWithFloat:50.0f];

//A stretch animation:
CABasicAnimation *stretchAni = [CABasicAnimation animationWithKeyPath:@"transform.scale.x"];
stretchAni.fromValue = [NSNumber numberWithDouble:1];
stretchAni.toValue = [NSNumber numberWithDouble:(animeView.frame.size.width+100)/animeView.frame.size.width];

//A slide animation:
CABasicAnimation *slideAni = [CABasicAnimation animationWithKeyPath:@"transform.translation.x"];
slideAni.fromValue = [NSNumber numberWithDouble:0];
slideAni.toValue = [NSNumber numberWithDouble:-100];

//A opacity animation:
CABasicAnimation *opacityAni = [CABasicAnimation animationWithKeyPath:@"opacity"];
opacityAni.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear];
opacityAni.fromValue = [NSNumber numberWithFloat:1];
opacityAni.toValue = [NSNumber numberWithFloat:0];

//The animationgroup
CAAnimationGroup *animGroup = [CAAnimationGroup animation];

//Add them to the group:
[animGroup setAnimations:[NSArray arrayWithObjects:radiusAni, opacityAni, slideAni, stretchAni, nil]];
//Set the properties:
[animGroup setDuration:3.0];
[animGroup setRemovedOnCompletion:NO];
[animGroup setFillMode:kCAFillModeForwards];

//Execute all the animations in the group:
[animeView.layer addAnimation:animGroup forKey:nil];

次に、4 つのアニメーションを同時に実行し、コンテンツのサイズを拡大、縮小、または何をしようとしてもサイズ変更します ;-)

于 2013-07-12T10:38:03.867 に答える