vote up 0 vote down star

On iPhone, how to implement rotating image around the center point using finger touch ?

Just like wheel, if you put finger on the iPhone screen , then move suddenly, then the image becoming rotating around center point just like the wheel, after a while, it becomes more and more slow , finally stop.

Who can help to give some pieces of codes (Object-C) or some suggest ?

flag

4 Answers

vote up -2 vote down

hi, I want to rotate an png image without showing the image in iphone for my application. I send this image via email. so before sending the image file I want to retate the image in 90 degree anticlockwise.

How can I do this?

link|flag
vote up 0 vote down

This question is similar to what you're asking.

link|flag
vote up 0 vote down

The transform property of a view or layer can be used to rotate the image displayed within. As far as the spinning part goes, you just track the location and movement of touches in your view with touchesBegan, touchesMoved, and touchesEnded.

Use the distance and time between the touches updates to calculate a speed, and use that to set a rotational velocity. Once you start the image spinning, update the position periodically (with an NSTimer, maybe), and reduce the rotational velocity by some constant.

link|flag
vote up 1 vote down

I would use the affine transformations - yuou can assign a transformation to any layer or UI element using the transform property.

You can create a rotation transform using CGAffineTransform CGAffineTransformMakeRotation( CGFloat angle) which will return a transformation that rotates an element. The default rotation should be around the centerpoint.

Be aware, the rotation is limited to 360 degrees, so if you want to rotate something more than that (say through 720 degrees) - you have to break the rotation into several sequences.

You may find this SO article useful as well.

link|flag

Your Answer

Get an OpenID
or

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