91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

[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

天台县| 江油市| 博爱县| 德化县| 永仁县| 阳高县| 二连浩特市| 北京市| 山西省| 尚义县| 房产| 奇台县| 永昌县| 桦川县| 邢台县| 瑞金市| 广平县| 西乡县| 保康县| 扶余县| 云林县| 普陀区| 威信县| 安达市| 巨野县| 宜君县| 安吉县| 筠连县| 万全县| 大洼县| 齐齐哈尔市| 巴塘县| 墨玉县| 达日县| 微博| 丰宁| 泽普县| 黑水县| 常宁市| 海阳市| 凉山|