国产探花免费观看_亚洲丰满少妇自慰呻吟_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>

  


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 芮城县| 卫辉市| 图们市| 花垣县| 西吉县| 西昌市| 兖州市| 申扎县| 原阳县| 龙江县| 霍山县| 德阳市| 镇原县| 陆良县| 甘孜县| 贺兰县| 黎城县| 黑河市| 肃北| 巫山县| 江西省| 祁阳县| 顺义区| 商河县| 日喀则市| 台湾省| 张家口市| 高台县| 砀山县| 佛冈县| 赤水市| 柞水县| 常山县| 信阳市| 临桂县| 延边| 富阳市| 忻城县| 中卫市| 府谷县| 自贡市|