我有两个UI按钮, 我想先点击数字1 UIBton
, 然后再点击数字2 >UIBton
。 在点击第二个 UIBton
后, 我要自动旋转两个 UIBton
。 我使用 CABIBimation
来旋转它们。 两个 UIBton
都有相同的 Buttonlick
动作。 这两个按钮使用不同的 CABIFIAimation
方法。
我为旋转它创建了一种新方法, 但当我从 按钮点击
动作( 与两个按钮相同) 中调用它时, 只有第一个被旋转。 为了调用旋转方法, 我使用 < code> [ 自己旋转按钮] ; code] 。
问题是如果我插入一个新的 UIButton
并给新按钮一个 IBAction
它就很好。 但我不想在图层中插入新按钮 。
我如何修补 rotate buttons
, 使两个按钮 < strong> 能够同时旋转 strong >?
这是代码:
- (void)animationDidStop:(CAAnimation *)theAnimation finished:(BOOL)flag
{
if ([value isEqualToString:@"SecondImage"])
{
UIImageView *myView2=(UIImageView *)[self.view viewWithTag:numberOfCurrentButton+100];
[myView2 setHidden:FALSE];
UIImageView *myView=(UIImageView *)[self.view viewWithTag:numberOfCurrentButton];
[myView setHidden:TRUE];
CALayer *layer2 = myView2.layer;
layer2.anchorPoint = CGPointMake(0.5f, 0.5f);
CABasicAnimation *animateImage2 = [CABasicAnimation animationWithKeyPath: @"transform"];
CATransform3D transform2 = CATransform3DIdentity;
transform2.m34 = 1.0/-900.0;
self.view.layer.transform = transform2;
layer2.transform = CATransform3DMakeRotation(-M_PI/2, 0.0f, 1.0f, 0.0f);
self.view.layer.transform = transform2;
transform2 = CATransform3DRotate(transform2, -M_PI, 0.0f, 1.0f, 0.0f);
animateImage2.repeatCount = 1.0;
animateImage2.toValue = [NSValue valueWithCATransform3D: transform2];
animateImage2.duration = 0.5;
animateImage2.fillMode = kCAFillModeForwards;
animateImage2.removedOnCompletion = NO;
[layer2 addAnimation: animateImage2 forKey: @"halfAnimatedImage"];
return;
}
}
-(void) rotateView1
{
UIImageView *firstImage=(UIImageView *)[self.view viewWithTag:numberOfCurrentButton];
CALayer *layer = firstImage.layer;
layer.anchorPoint = CGPointMake(0.5f, 0.5f);
CABasicAnimation *animateImage = [CABasicAnimation animationWithKeyPath: @"transform"];
CATransform3D transform = CATransform3DIdentity;
transform.m34 = 1.0/-900.0;
self.view.layer.transform = transform;
layer.transform = CATransform3DMakeRotation(M_PI, 0.0f, 1.0f, 0.0f);
[animateImage setDelegate:self ];
animateImage.repeatCount = 0.5;
animateImage.toValue = [NSValue valueWithCATransform3D: transform];
animateImage.duration = 0.5;
animateImage.fillMode = kCAFillModeForwards;
animateImage.removedOnCompletion = NO;
animateImage.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear];
[animateImage setValue:@"SecondImage" forKey:@"halfAnimatedImage"];
[layer addAnimation: animateImage forKey: @"halfAnimatedImage"];
}
-(void) rotateView2
{
UIImageView *firstImage=(UIImageView *)[self.view viewWithTag:numberOfCurrentButton];
CALayer *layer = firstImage.layer;
layer.anchorPoint = CGPointMake(0.5f, 0.5f);
CABasicAnimation *animateImage = [CABasicAnimation animationWithKeyPath: @"transform"];
CATransform3D transform = CATransform3DIdentity;
transform.m34 = 1.0/-900.0;
self.view.layer.transform = transform;
layer.transform = CATransform3DMakeRotation(M_PI, 0.0f, 1.0f, 0.0f);
[animateImage setDelegate:self ];
animateImage.repeatCount = 0.5;
animateImage.toValue = [NSValue valueWithCATransform3D: transform];
animateImage.duration = 0.5;
animateImage.fillMode = kCAFillModeForwards;
animateImage.removedOnCompletion = NO;
animateImage.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear];
[animateImage setValue:@"SecondImage" forKey:@"halfAnimatedImage"];
[layer addAnimation: animateImage forKey: @"halfAnimatedImage"];
}
-(IBAction) buttonRefresh:(UIButton *)sender
{
numberOfCurrentButton=1;
[self rotateView1];
numberOfCurrentButton=2;
[self rotateView2];
}
-(IBAction)buttonClicked:(UIButton *)sender
{
[self buttonRefresh:sender];
}
`` `