首页 > 移动平台 > 详细

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

时间:2015-06-16 12:26:04      阅读:181      评论:0      收藏:0      [点我收藏+]

 

 

添加一个 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

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

原文:http://www.cnblogs.com/rollrock/p/4580123.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!