简体   繁体   English

UIButton缩放动画不再起作用

[英]UIButton Scale Animation doesn't work anymore

Thanks for the help so far ! 感谢你目前的帮助 !

This is my problem : 这是我的问题:

I have a method for my animation : 我有一种动画制作方法:

-(void) animateButtonDown {

// Animation for cornerRadius
[self.playStopButton setTitle:@"" forState: UIControlStateNormal];
CABasicAnimation *morph = [CABasicAnimation animationWithKeyPath:@"cornerRadius"];
morph.fromValue = @42.5;
morph.toValue = @0;
morph.duration = 0.5;
[self.playStopButton.layer addAnimation:morph forKey:@"morph"];
playStopButton.layer.cornerRadius = 0;

//Animation for scale and color
playStopButton.transform = CGAffineTransformMakeScale(1,1);
[UIView beginAnimations:@"button" context:nil];
[UIView setAnimationDuration:0.5];
    playStopButton.transform = CGAffineTransformMakeScale(0.6,0.6);
    playStopButton.backgroundColor = UIColorFromRGBWithAlpha(0x000000,0.3);
[UIView commitAnimations]; }

The animation worked fine. 动画效果很好。 Now the animation for transform the scale factor does not work anymore. 现在,用于变换比例因子的动画不再起作用。 It seems like the whole construct : 似乎整个构造:

playStopButton.transform = CGAffineTransformMakeScale(1,1);
[UIView beginAnimations:@"button" context:nil];
[UIView setAnimationDuration:0.5];
    playStopButton.transform = CGAffineTransformMakeScale(0.6,0.6);
    playStopButton.backgroundColor = UIColorFromRGBWithAlpha(0x000000,0.3);
[UIView commitAnimations];

Does not work anymore. 不再起作用。 It jumps directly to (0.6,0.6)... This was first recognized with update to xCode 6.1.3. 它直接跳到(0.6,0.6)...这是通过更新xCode 6.1.3首次识别的。

I need a smooth scale transform animation with duration of 0.5. 我需要持续时间为0.5的平滑缩放变换动画。

I hope anyone can help me ? 我希望有人能帮助我吗?

Try with animation block, may be it will work 尝试使用动画块,可能会起作用

[UIView animateWithDuration:0.5 animations:^{
  playStopButton.transform = CGAffineTransformMakeScale(0.6,0.6);
  playStopButton.backgroundColor = UIColorFromRGBWithAlpha(0x000000,0.3);
}];

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM