IOS  轻扫

来源:互联网 发布:手机淘宝网充话费充值 编辑:程序博客网 时间:2024/04/29 09:54

 

#import "UIqing.h"


@implementation UIqing


- (void)dealloc {

   

    [super dealloc];

}

//轻扫的事件

- (void)qingright

{

   

   [UIViewbeginAnimations:nilcontext:NULL];

   [UIViewsetAnimationDuration:2];

   [UIViewsetAnimationTransition:UIViewAnimationTransitionCurlDown forView:self cache:YES];

   [UIViewcommitAnimations];


}

- (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent *)event

{

   

   

   UISwipeGestureRecognizer *recognizer  =[[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(qingright)];

    [recognizer

    setDirection:(UISwipeGestureRecognizerDirectionLeft)];//只有x'a

   [selfaddGestureRecognizer:recognizer];

    [recognizerrelease]; 

   NSLog(@"1111111111");

}


@end