zoukankan      html  css  js  c++  java
  • IOS UIScrollView中 使用 touch 无法响应的问题

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

  • 相关阅读:
    图片剪切
    js事件(Event)知识整理
    原生JavaScript事件详解
    underscore源码解析
    win7 vi工具
    开源java数据库库
    win7快捷键
    win7 绿色版MySQL安装与配置
    maven jetty
    javax inect
  • 原文地址:https://www.cnblogs.com/rollrock/p/4580123.html
Copyright © 2011-2022 走看看