2011-09-11 92 views

回答

15

我這是怎麼通過觸摸...

子類UIView的 並添加

-(id)hitTest:(CGPoint)point withEvent:(UIEvent *)event { 
    UIView *hitView = [super hitTest:point withEvent:event]; 
    if (hitView == self){ 
     return nil; 
    } 
    else { 
     return hitView; 
    } 
} 
-4

看來你需要爲上述任務使用NSNotificationCenter。 看看這個tutorial