【发布时间】:2016-04-13 22:03:21
【问题描述】:
我的代码中有一个错误,我无法修复..
这是我的代码..它在第一个 if 语句中,current_region++ 出现...请帮助我,谢谢
-(void)planetRotation:(UIView *)planet average:(float )time1 perihelion:(float )time2 aphelion:(float )time3 region:(int ) current_region
{
current_region = 0;
[planet.layer removeAllAnimations];
if (current_region == 0 || current_region == 2)
{
[UIView animateWithDuration:time1 delay:0.0 options: UIViewAnimationOptionTransitionNone
animations: ^{ CABasicAnimation* rotationAnimation;
rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];
rotationAnimation.toValue = [NSNumber numberWithFloat: M_PI * 2.0 /* full rotation*/ * time1 * 1 ];//multiply more to add speed
rotationAnimation.duration = time1/4;
rotationAnimation.cumulative = YES;
rotationAnimation.repeatCount = HUGE_VALF;
[planet.layer addAnimation:rotationAnimation forKey:@"orbit"];} completion:^(BOOL finished){current_region++; }];
}
else if(current_region == 1)
{
[UIView animateWithDuration:time2 delay:0.0 options: UIViewAnimationOptionTransitionNone
animations:^{ CABasicAnimation* rotationAnimation;
rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];
rotationAnimation.toValue = [NSNumber numberWithFloat: M_PI * 2.0 /* full rotation*/ * time2 * 1 ];//multiply more to add speed
rotationAnimation.duration = 15;
rotationAnimation.cumulative = YES;
rotationAnimation.repeatCount = HUGE_VALF;
[planet.layer addAnimation:rotationAnimation forKey:@"orbit"];} completion:^(BOOL finished){ }];
}
else if(current_region == 3)
{
[UIView animateWithDuration:time3 delay:0.0 options: UIViewAnimationOptionTransitionNone
animations:^{ CABasicAnimation* rotationAnimation;
rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];
rotationAnimation.toValue = [NSNumber numberWithFloat: M_PI * 2.0 /* full rotation*/ * time3 * 1 ];//multiply more to add speed
rotationAnimation.duration = 15;
rotationAnimation.cumulative = YES;
rotationAnimation.repeatCount = HUGE_VALF;
[planet.layer addAnimation:rotationAnimation forKey:@"orbit"];} completion:^(BOOL finished){ }];
}
【问题讨论】:
标签: objective-c