Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an imageView and after i add it to the screen I release it. Before that I adds a button onto it with this code.

			button = [[UIButton buttonWithType:UIButtonTypeCustom] retain];
			button.frame = CGRectMake(128.00, 128.00, 23.00, 40.00);
			[button setBackgroundImage:[UIImage imageNamed:@"move.png"] forState:UIControlStateNormal];
			[button addTarget:self action:@selector(showAddress:) forControlEvents:UIControlEventTouchUpInside];
			[imageView addSubview:button];

            - (void) showAddress:(id)sender
            {
                NSLog(@"Working");
            }

The button appears but nothing happens when I click on it to call a functon. Not even the pressing-unpressing. Is this becoz I am releaseing the imageView?

share|improve this question

1 Answer

up vote 2 down vote accepted

Edited:Check if userInteractionEnabled property of your UIImageView is set to YES - it is set to NO by default and that's why UIImageView (and its subviews) does not respond to touch events. I've just set it to YES in my code and it works fine.

One more note - when you add your button to another view it takes the ownership of the button and as you retained it in your code you should also release it. (Or just not retain in this case)

share|improve this answer
since i have subclassed and written the touch functions when I click on the button, it calls the touchesBegan and touchesEnded. But the button is just like an image now which is having no effect. Or should I change the addTarget to imageView rather then self? – wolverine Dec 10 '09 at 9:38
See edited answer – Vladimir Dec 10 '09 at 9:42
Ok boss, it worked. I removed imageView.userInteractionEnabled = YES from - viewDidLoad and placed it in the code just before I add the imageViews into the scrollView. Thanks, u r a real lifesaver,:) – wolverine Dec 10 '09 at 9:55

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.