您的位置:首页 > 产品设计 > UI/UE

IOS UIScrollView中 使用 touch 无法响应的问题

2015-06-16 10:38 555 查看
添加一个 Category 然后在使用到 UIScrollView 的文件里面 导入这个头文件 就可以

//

// UIScrollView+UITouch.m

// alarm

//

// Created by zhuang chaoxiao on 15-6-16.

// Copyright (c) 2015年 zhuang chaoxiao. All rights reserved.

//

#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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: