码迷,mamicode.com
首页 > 其他好文 > 详细

touches 事件捕获不到

时间:2016-07-21 14:53:27      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

在UIView上加载了一个UIScrollView(全屏),touches 事件捕获不到了

原因:UIView的touch事件被UIScrollView捕获了,无法传递下去

解决方法:写一个UIScrollView的category,在每个使用UIScrollView的地方将该类别导入

1、创建类别 file为UITouch class为UIScrollView

技术分享技术分享

2、.m里内容

 

#import "UIScrollView+UITouch.h"

 

@implementation UIScrollView (UITouch)

 

-(void)touchesBegan:(NSSet*)touches withEvent:(UIEvent *)event {

    

    [[self nextResponder] touchesBegan:touches withEvent:event];

    

    [super touchesBegan:touches withEvent:event];

    

}

 

 

 

-(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];

    

}

 

@end

 

3、在需要的界面#import该文件

 

touches 事件捕获不到

标签:

原文地址:http://www.cnblogs.com/huaixu/p/5691605.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!