您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
#import <UIKit/UIKit.h> @interface LongPressGestureRecognizer : UIGestureRecognizer @end
#import "LongPressGestureRecognizer.h" #import <UIKit/UIGestureRecognizerSubclass.h> #import <time.h> NSInteger timer1; NSInteger timer2; @implementation LongPressGestureRecognizer -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { [super touchesBegan:touches withEvent:event]; NSDate *nowDate = [NSDate date]; NSDateFormatter *dateformatter = [[NSDateFormatter alloc] init]; [dateformatter setDateFormat:@"ss"]; timer1 = [[dateformatter stringFromDate:nowDate] integerValue]; [dateformatter release]; NSLog(@"%d",timer1); } -(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { [super touchesEnded:touches withEvent:event]; NSDate *nowDate = [NSDate date]; NSDateFormatter *dateformatter = [[NSDateFormatter alloc] init]; [dateformatter setDateFormat:@"ss"]; [dateformatter release]; NSLog(@"%d",timer1); if ((timer2 -timer1) >= 2) { self.state = UIGestureRecognizerStateEnded; } } @end
#import <UIKit/UIKit.h> @interface DXWViewController : UIViewController<UIGestureRecognizerDelegate> @end
#import "DXWViewController.h" #import "LongPressGestureRecognizer.h" @interface DXWViewController () @end @implementation DXWViewController - (void)viewDidLoad { [super viewDidLoad]; LongPressGestureRecognizer * longPress = [[LongPressGestureRecognizer alloc] initWithTarget:self action:@selector(LongPress:)]; [self.view addGestureRecognizer:longPress]; } -(void)LongPress:(LongPressGestureRecognizer *)my { NSLog(@"OK"); } @end
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。