美文网首页
IOS 事件响应链

IOS 事件响应链

作者: TaoGeNet | 来源:发表于2017-05-23 11:05 被阅读8次

    每个View中含有这两个方法

    - (nullable UIView *)hitTest:(CGPoint)point withEvent:(nullable UIEvent *)event;  // recursively calls -pointInside:withEvent:. point is in the receiver's coordinate system

    - (BOOL)pointInside:(CGPoint)point withEvent:(nullable UIEvent *)event;  // default returns YES if point is in bounds

    一个是根据点击坐标返回事件是否发生在本视图以内,另一个方法是返回响应点击事件的对象

    UIApplication对象维护自己的一个响应者链,从nextResponder中返回View  根据View中pointInside返回yes的时候,响应者入栈。栈顶的响应者作为最优先处理事件对象

    相关文章

      网友评论

          本文标题:IOS 事件响应链

          本文链接:https://www.haomeiwen.com/subject/pemwxxtx.html