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

相关文章:

  • 2022-12-23
  • 2021-07-22
  • 2022-12-23
  • 2022-12-23
  • 2021-04-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-30
  • 2022-12-23
  • 2022-01-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-14
相关资源
相似解决方案