1

次のコードを使用して、画像を回転できます。しかし、アニメーションの後、画像の最終的な角度を取得する方法がわかりません。

「タッチ終了」イベント後の画像の回転角度を計算したい。

- (void)rotateAccordingToAngle:(float)angle
{
    [NumbersImage setTransform:CGAffineTransformRotate(NumbersImage.transform, angle)];  
}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event 
{    
    [NumbersImage.layer removeAllAnimations];
    previousTimestamp = event.timestamp;
}
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
    UITouch *touch = [touches anyObject];
    if ([touch view] == NumbersImage) {

    CGPoint center = CGPointMake(CGRectGetMidX([NumbersImage bounds]), CGRectGetMidY([NumbersImage bounds]));
    CGPoint currentTouchPoint = [touch locationInView:NumbersImage];
    CGPoint previousTouchPoint = [touch previousLocationInView:NumbersImage];
    CGFloat angleInRadians = atan2f(currentTouchPoint.y - center.y, currentTouchPoint.x - center.x) - atan2f(previousTouchPoint.y - center.y, previousTouchPoint.x - center.x);

    [self rotateAccordingToAngle:angleInRadians];

    CGFloat angleInDegree = RadiansToDegrees(angleInRadians);
    FinalDegree +=angleInDegree;        
    revolutions+= (angleInDegree/360.0f);
}

}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
    UITouch *touch = [touches anyObject];

if ([touch view] == NumbersImage) {

    NSTimeInterval timeSincePrevious = event.timestamp - previousTimestamp;
    CGFloat revolutionsPerSecond = revolutions/timeSincePrevious;

    [self startAnimationWithRevolutions:revolutionsPerSecond forTime:5.0f];
    NSLog(@"Revolution per second = %f",revolutionsPerSecond);

    revolutions = 0;
}
}

CGFloat RadiansToDegrees(CGFloat radians)
{
    //NSLog(@"Radians %f",radians);
    return radians * 180 / M_PI;
};


- (void)animationDidStop:(CAAnimation *)theAnimation finished:(BOOL)flag
{
NumbersImage.userInteractionEnabled = TRUE;
    if (timerUpdate) {
        [timerUpdate invalidate];
        timerUpdate = nil;
    }
}
-(void)updateTransform{
    NumbersImage.transform = [[NumbersImage.layer presentationLayer] affineTransform];
}
-(void)startAnimationWithRevolutions:(float)revPerSecond forTime:(float)time
{
    NumbersImage.userInteractionEnabled = FALSE;
    float totalRevolutions = revPerSecond * time;

    timerUpdate = [NSTimer scheduledTimerWithTimeInterval:0.1f target:self selector:@selector(updateTransform) userInfo:nil repeats:YES];

    [CATransaction begin];
    [CATransaction setValue:[NSNumber numberWithFloat:time]forKey:kCATransactionAnimationDuration];

    CABasicAnimation* spinAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation"];
CGAffineTransform transform = NumbersImage.transform;

float fromAngle = atan2(transform.b, transform.a);
float toAngle = fromAngle + (totalRevolutions*4*M_PI);

NSLog(@"To Angle = %f",toAngle);
NSLog(@"From Angle = %f",fromAngle);
spinAnimation.fromValue = [NSNumber numberWithFloat:fromAngle];
spinAnimation.toValue = [NSNumber numberWithFloat:toAngle];
spinAnimation.repeatCount = 0;
spinAnimation.removedOnCompletion = NO;
spinAnimation.delegate = self;
spinAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut];
[NumbersImage.layer addAnimation:spinAnimation forKey:@"spinAnimation"];
[CATransaction commit];


//NSLog(@"Total Rotation = %f",totalRevolutions);

//NSLog(@"Degree Rotation %f", temp);

//[self Rotate];
CGFloat temp = RadiansToDegrees(fromAngle);
FinalDegree += temp;
//NSLog(@"FinalDegree %f",FinalDegree);


//NSLog(@"Final degree %f",FinalDegree);
//NSLog(@"Total %f",total);

}

CGFloat DegreesToRadians(CGFloat degrees)
{
    return degrees * M_PI / 180;
}

このコードは、速度を測定し、ユーザーのタッチごとに画像を回転させるために使用されます。

しかし、画像の最終的な角度を取得できません。

誰かがこのコードで私を助けてください。

ありがとう、

ヘマン。

4

1 に答える 1

1

あなたは間違ったアプローチをしました。ここを見てください:

  1. インスタンスを宣言し、float x;でゼロにしviewDidLoadます。
  2. touchesMoved では、x を 1 増やします (または、検出した方向に応じて減らします)。
  3. 心に留めておいてください: x は度単位の角度であるため、リードを 0 未満にデクリメントする場合は を実行しx = 360.0;、逆の場合も同様です: リードを 360.0 より上にインクリメントする場合は を実行しますx = 0.0;
  4. また、そこには touchesMoved と言う:

myImageView.transform = CGAffineTransformMakeRotation(x * M_PI/180);

ところで、あなたは常に角度を知っています - それは x です。

于 2012-07-20T06:58:41.373 に答える