Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have 6 uiimage plates which are placed on the view. Now I am rotating the images 90 degrees on double tap by using the below code:

CGAffineTransform transform = CGAffineTransformMakeRotation(M_PI * 0.5);
plate.transform = transform;

For first double tap it rotates 90 degree but when double tap second time it doesn't rotate. Am i missing something ? Thanks in advance.

share|improve this question

2 Answers

up vote 2 down vote accepted

AffineTransform keeps the data of the transformation saved. So if you scale/rotate/move the view, the AffineTransform will keep that info.

In order to rotate 90 degree each time, you will have to get the current value and then modify it, or just keep a variable of your current degree and change the variable.

share|improve this answer

It's because you are already there, you have already rotated those rads. Try by increwsing the rotation value everytime the user taps the image.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.