2020-06-19

2020-06-19  本文已影响0人  时光流逝_6602

判断点击在哪个view中

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {

    CGPoint point = [[touches anyObject] locationInView:self.view];

    point = [self.subView1.layer convertPoint:point fromLayer:self.view.layer];

    if ([self.subView1.layer containsPoint:point]) {

      //处理点击到这个view中要执行的事件

        return;

    }

}

上一篇 下一篇

猜你喜欢

热点阅读