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.

     

     

     

     

     

     

  • 相关阅读:
    (转)ubuntu 对拍和基本操作
    一个在线翻译LateX的网站
    51nod 1376: 最长递增子序列的数量(二维偏序+cdq分治)
    BZOJ1087: [SCOI2005]互不侵犯King(状态压缩动态规划)
    ZOJ Problem Set
    bzoj2301:[HAOI2011]Problem b(容斥+莫比乌斯反演+分块)
    BZOJ 4318 OSU!期望DP
    CodeForces 235B Let's Play Osu!(概率)
    博客界面美化
    A+B Problem
  • 原文地址:https://www.cnblogs.com/1oo1/p/3987183.html
Copyright © 2011-2022 走看看