我必须在手指触摸上循环旋转视图...我的意思是像拨打旧手机号码......触摸应该只在角落.....任何人都可以帮助我...我有尝试了很多......但没有成功
答案 0 :(得分:11)
您需要在要旋转的视图上定义UIRotationGestureRecognize
,然后添加选择器方法并像这样实现它。
将此添加到viewDidLoad
方法
UIRotationGestureRecognizer *rotate = [[UIRotationGestureRecognizer alloc] initWithTarget:self action:@selector(rotation:)];
[myUIViewObject addGestureRecognizer:rotate];
[rotate release];
然后实施该方法。
- (void) rotation:(UIRotationGestureRecognize *) sender
{
CGAffineTransform myTransform = CGAffineTransformMakeRotation(sender.rotation);
sender.view.transform = myTransform;
}
PS。 myUIViewObject
可以是您想要轮播的任何UIView
对象。
编辑:
你会在这里找到很多相关信息:
http://www.iphonedevsdk.com/forum/iphone-sdk-development/49847-how-find-angle-two-points.html