I have set my status bar hidden in my Application. [application setStatusBarHidden:YES];

I have added an UIView on the window as a subview at 0,0,320,40. But I am not able to get touches on my View ?

But if i am changing the 'Y' position like 0,30,320,40 its working fine.

What is the problem ???

Thanks

link|improve this question

80% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Check isUserInteractionEnabled on the view. Some views, like UIImageView, disable that by default.

link|improve this answer
Its not handling touches in the simulator, but working fine on the device. – Biranchi May 25 '10 at 3:49
feedback

check if there is a sub-view blocking it

link|improve this answer
But if i am changing the 'Y' position like 0,30,320,40 its working fine. – Biranchi May 13 '10 at 4:26
feedback

Your Answer

 
or
required, but never shown

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