- (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中要執(zhí)行的事件
? ? ? ? return;
? ? }
}