I have to rotate a view circularly on finger touch...I mean like dialing the old phones number...and the touch should be only on corners.....can any one help me...i have tried it a lot...but was not successes

enter image description here

link|improve this question

64% accept rate
feedback

1 Answer

up vote 6 down vote accepted

You need to define the UIRotationGestureRecognize on the view that you want to rotate and than add a selector method and implement it like this.

Add this to you viewDidLoad method

UIRotationGestureRecognizer *rotate = [[UIRotationGestureRecognizer alloc] initWithTarget:self action:@selector(rotation:)];

[myUIViewObject addGestureRecognizer:rotate];

[rotate release];

And then implement the method.

- (void) rotation:(UIRotationGestureRecognize *) sender
{
    CGAffineTransform myTransform = CGAffineTransformMakeRotation(sender.rotation);
    sender.view.transform = myTransform;
}

PS. myUIViewObject can be any UIView Object that you want to rotate.

Edit:

you will find a lot of information on this here:

http://www.iphonedevsdk.com/forum/iphone-sdk-development/49847-how-find-angle-two-points.html

link|improve this answer
Thank you....but i have never used gesture before can you help me more on this...? – Kumar sonu Mar 4 '11 at 4:48
ok let me edit my answer. – Robin Mar 4 '11 at 4:49
Thanks for your answer...i am using imageView for rotation...adding that from interfaceBuilder ..i have made its userintraction and multipletouch both enable...but still it is not rorating....i have used only your code and nothing more....just replaced -myUIViewObject with imageView... – Kumar sonu Mar 4 '11 at 5:08
you need to create an IBOutlet for that imageView and connect it in the IB and instead myUIViewObject use the name of your UIImageView variable – Robin Mar 4 '11 at 5:11
I have used the same....ok got it working....but can i make it from one single finger touch...? – Kumar sonu Mar 4 '11 at 5:15
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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