im trying to add a view as a button's subview like this:

btn1 is a UIButton

[self.btn1 addSubview:view1];

After adding it, the button wont give any touch related events, the button works fine without this subview added.

Any thoughts?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The touch events always come to the view on top, unless if has disabled interaction.

What you should do is:

view1.userInteractionEnabled = NO;
link|improve this answer
Ill try that and see if it works, Thanks! – Nicolas Oct 31 '10 at 20:45
Thats it, Works GREAT! Thank you tadej! – Nicolas Oct 31 '10 at 20:49
feedback

Your Answer

 
or
required, but never shown

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