I'm trying to add subviews to a UIButton. This is working fine right now. But the button isn't clickable anymore as soon as I add the subviews.

I use the following code:

UIButton * button = [UIButton buttonWithType:UIButtonTypeCustom];
    button.frame = CGRectMake(column*100+24, row*80+10, 64, 64);
[button addSubview:asyncImage];
[button addSubview:price];
    [button addTarget:self 
               action:@selector(buttonClicked:) 
     forControlEvents:UIControlEventTouchUpInside];

The button works again if I cut out the 2 addsubviews. If anyone knows how to fix this it would be great!

THNX!!!

link|improve this question

feedback

4 Answers

up vote 5 down vote accepted

I found a quick solutions. I needed to set the asyncimageview to the following:

asyncImage.userInteractionEnabled = NO;
        asyncImage.exclusiveTouch = NO;

After this it worked!

link|improve this answer
Will answer my questions in 2 days when possible – Jos Jul 13 '11 at 9:13
feedback

try instead of [UIButton buttonWithType:UIButtonTypeCustom]; [UIButton buttonWithType:UIButtonControlType];

link|improve this answer
That doesn't work, it gives me an error, doesn't recognize UIButtonControlType – Jos Jul 13 '11 at 7:07
oh, then try setting user interaction to enabled, like this [YOUR BUTTON setUserInteractionEnabled://bool, for you its YES – user842059 Jul 13 '11 at 7:15
I tried that for the 2 subviews (price and asyncImage) and for the button. Bit didn't made any difference... – Jos Jul 13 '11 at 7:18
feedback

Have you tried to put:

[asyncImage setUserInteractionEnabled:YES];
link|improve this answer
tried it, but without any success... :( – Jos Jul 13 '11 at 7:06
have you tried also with the other view? [price setUserInteractionEnabled:YES]; – Matteo Alessani Jul 13 '11 at 7:08
Yep, also without luck – Jos Jul 13 '11 at 7:11
feedback

in the same sitiation i make this action: inherit from UIButton and add all labels and imageview's of button to self, finally put new button to view as last subview and add targets of self button to this last button(also set backgroundColor to clearColor for transparent). now it will be clickable and works fine.

link|improve this answer
I get somehow the idea, but don't exactly know what I need to do. Do you have a short example? Thnx! – Jos Jul 13 '11 at 7:29
I mainly don't understand what you mean with making the action inherit from UIButton, and setting it to self. If I do self.button it gives me an error. Thnx! – Jos Jul 13 '11 at 7:52
I put example here: link – Valery Pavlov Jul 13 '11 at 8:10
Wow, OK! Gonna try that! Thnx – Jos Jul 13 '11 at 8:17
feedback

Your Answer

 
or
required, but never shown

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