Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my iPad application, there're multiple views shown on screen. I hope to create a touch down event for all other shown views except one view? How can I do it? ( i can create touch event one by one view, but i think that's not a good idea)

Thanks

share|improve this question

1 Answer

it is very simple...

just write touch begin like....

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    UITouch *touch=[[event allTouches] anyObject];
    if([touch view]!=< your view that you dont want to touch >)
    {
       // <# Your Code #>
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.