2011-09-11 22 views

Respuesta

15

Así es como me pase toques ...

Subclase UIView la y añadir

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

Parece que necesita utilizar NSNotificationCenter para dicha tarea. Echa un vistazo a este tutorial.

Cuestiones relacionadas