亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

[IOS]自定義長觸屏事件

發布時間:2020-07-19 18:55:04 來源:網絡 閱讀:304 作者:蓬萊仙羽 欄目:移動開發

寫一個Demo來自定義一個長觸屏事件,自定義長按手勢。

實現步驟:

1.創建一個自定義手勢類,命名為LongPressGestureRecognizer,在創建的時候繼承UIGestureRecognizer

LongPressGestuRecognizer.h:

#import <UIKit/UIKit.h>  @interface LongPressGestureRecognizer : UIGestureRecognizer  @end

LongPressGestuRecognizer.m:


#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

2.修改主ViewController

ViewController.h:

#import <UIKit/UIKit.h>  @interface DXWViewController : UIViewController<UIGestureRecognizerDelegate>  @end

ViewController.m:

#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

3.ViewController中的觸屏事件touchesBegan和自定義手勢中的touchesBegan區別:                                              

ViewController中的touchesBegan是針對整個View而言的,而自定義中的手勢是要綁定到某個特定的view,只針對這個view才相應的手勢事件



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

拜城县| 从化市| 民乐县| 徐汇区| 嫩江县| 宜君县| 白城市| 吉水县| 三门峡市| 巴彦淖尔市| 平塘县| 淄博市| 永城市| 盐源县| 藁城市| 乌审旗| 崇礼县| 太仆寺旗| 东平县| 五华县| 盐亭县| 新龙县| 哈密市| 开远市| 义马市| 福清市| 土默特右旗| 临城县| 夏河县| 黄陵县| 南阳市| 台东市| 宁陵县| 岫岩| 保德县| 桃江县| 清水河县| 大荔县| 安平县| 彭泽县| 宾阳县|