国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

解決UIScrollView的點擊事件

2019-11-14 19:11:53
字體:
來源:轉載
供稿:網友

目前有兩種方法

第一種 通過 Category 擴展 UIScrollView 對象,添加觸摸事件,(不建議,后續擴展不方便)代碼如下

@implementation UIScrollView (ExtendTouch)- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {    [[self nextResponder] touchesBegan:touches withEvent:event];    [super touchesBegan:touches withEvent:event];    UITouch *touch = [touches anyObject];    CGFloat startx = [touch locationInView:self].x;    NSLog(@"%f",startx);}-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {    [[self nextResponder] touchesMoved:touches withEvent:event];    [super touchesMoved:touches withEvent:event];}- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {    [[self nextResponder] touchesEnded:touches withEvent:event];    [super touchesEnded:touches withEvent:event];}

 第二種 添加手勢 (推薦,易于維護)

        //添加點按擊手勢監聽器    UITapGestureRecognizer *tapGesture=[[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapUiscrollView:)];    //設置手勢屬性    tapGesture.delegate = self;    tapGesture.numberOfTapsRequired=1;//設置點按次數,默認為1,注意在iOS中很少用雙擊操作    tapGesture.numberOfTouchesRequired=1;//點按的手指數    [self.scrllview addGestureRecognizer:tapGesture];

  

@interface ViewController ()<UIScrollViewDelegate,UIGestureRecognizerDelegate>

  


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 洪雅县| 平利县| 高雄县| 新乡市| 古田县| 丰城市| 修水县| 新田县| 德化县| 西青区| 安吉县| 偃师市| 无为县| 横峰县| 措美县| 宜宾县| 额敏县| 黄浦区| 桂林市| 观塘区| 临洮县| 天全县| 阳谷县| 磐石市| 黑龙江省| 闵行区| 思南县| 华容县| 台东县| 农安县| 禹城市| 白河县| 兴安县| 宣恩县| 新源县| 大英县| 长宁区| 绥芬河市| 宁夏| 兰西县| 海阳市|