hi,
Can anyone tell me how to rotate an image in circular motion
|
|
|
|
|
|
|
If you mean, "How do you make an image follow a circular path?", then the pseudocode would be:
|
||
|
|
|
|
This question asks the same thing, although in different words. The answers in that question, as well as in this question should provide a way to animate a UIView (UIImageView is simply a subclass of this) about its center for 360 degrees or more. |
||
|
|
|
|
You can rotate a view, by some number of radians, regardless of whether it is less than a full rotation or many multiples of a full rotation, without having to split the rotation into pieces. As an example, the following code will spin a view, once per second, for a specified number of seconds. You can easily modify it to spin a view by a certain number of rotations, or by some number of radians.
|
||