當(dāng)你想點(diǎn)擊下方的視圖時(shí)
1叠洗、上面的視圖userInteractionEnabled為NO、則事件就會(huì)傳遞到下面的視圖、即可以點(diǎn)擊下面的視圖
2歼培、就是事件的穿透、點(diǎn)擊了上面視圖茸塞、當(dāng)屬于下面視圖坐標(biāo)范圍時(shí)返回下面視圖的響應(yīng)
-? (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
{
? ? UIView *hitView = [super hitTest:point withEvent:event];
//? 如果點(diǎn)擊的是這兩個(gè)視圖則穿透到scrollview
? ? if (hitView == self.startV||hitView == self.endV)
? ? {
? ? ? ? return _scrollView;
? ? }else{
? ? ? ? return hitView;
? ? }
}