zoukankan      html  css  js  c++  java
  • Chapter 12 Touch Events and UIResponder

    Chapter 12  Touch Events and UIResponder

     

    1.As a subclass of UIResponder, a UIView can override four methods to handle the distinct touch events:

    a finger or fingers touches the screen:

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

    a finger or fingers moves across the screen (this message is sent repeatedly as a finger moves)

    -(void)touchesMoved:(NSSet*)touches withEvent:(UIEvent*)event

    a finger or fingers is removed from the screen

    -(void)touchesEnded:(NSSet*)touches withEvent:(UIEvent*)event

    a system event, like an incoming phone call, interrupts a touch before it ends

    -(void)touchesCancelled:(NSSet*)touches withEvent:(UIEvent*)event;

     

    2. When a finger touches the screen, an instance of UITouch is created. The UIView that this finger touched is sent the message touchesBegan:withEvent: and the UITouch is in the NSSet of touches.

     

    3. How touch objects work:

    One UITouch corresponds to one finger on the screen. This touch object lives as long as the finger is on the screen and always contains the current position of the finger on the screen.

    The view that the finger started on will receive every touch event message of that finger no matter what. If the finger moves outside of the UIView’s frame that it began on, that view still receives the touchesMoved:withEvent: and touchesEnded:withEvent: messages. Thus, if a touch begins on a view, then that view owns the touch for the life of the touch.

    You do not have to - nor should you ever - keep a reference to a UITouch object. The application will give you access to a touch object when it changes state.

     

     

     

     

     

     

  • 相关阅读:
    npm 如何查看一个包的版本信息?
    npm使用常见问题及注意事项
    npm依赖管理:冗余,依赖树
    删除cnpm
    SQL Server 2012 读写分离设置
    SQL Server AlwaysOn读写分离配置
    Sql server Always On 读写分离配置方法
    Sqlserver 2012 Always on技术
    构建高性能web之路------mysql读写分离实战
    EJB配置jboss数据源
  • 原文地址:https://www.cnblogs.com/1oo1/p/3987183.html
Copyright © 2011-2022 走看看