vote up 0 vote down star

I am trying to add an info button to my app to provide custom help.

Instead of adding the button to the nib and linking the event (touchUpInside) to the controller, I decided to add the button programmatically. The button shows up. When I add the target event handler to be executed when the button is touched, it does not work. That my method(doHelp) is not being called on touching the button.

When I debugged it, the event is not registered with the button! Although the code does not throw any exceptions.

Here is the code snippet FROM the view:

	// Create a Button to get Help		
	UIButton *helpButton =  [UIButton buttonWithType:UIButtonTypeInfoDark ] ;
	buttonRect = helpButton.frame;

	// CALCulate the bottom right corner
	buttonRect.origin.x = rect.size.width - buttonRect.size.width - 8;
	buttonRect.origin.y = rect.size.height - buttonRect.size.height - 8; 
	[helpButton setFrame:buttonRect];

	[helpButton addTarget:self action:@selector(doHelp:) forControlEvents:UIControlEventTouchUpInside];
	[helpButton setEnabled:TRUE];
	[self addSubview:helpButton];

........

// Another METHOD ELSEWHERE in the VIEW object
-(void)doHelp:(id)Sender
{
    [self setHelpNeeded:TRUE];
    [self setNeedsDisplay];
}

What am I doing wrong please? I have looked at the SDK help and samples and am really flummoxed! Am hoping another pair of eyes will help! :-)

This code snippet is in the View Object in case you need to know. I just added the doHelp to help the first 2 responders... thanks.

**UPDATE 6/4/09 ** - I have been trying all night and nothing worked. I think there is something wrong in the way I have set up the method selector as my method never gets called. Everything else looks fine. Even using a NIB file does not work. I have tagged the button, retrieved it and added the method selector but to no avail. There is something fundamental which I am doing wrong... Argh!!! Any ideas, anyone?

flag

75% accept rate
Since Nothing has worked so far... I am going to revert it to the NIB Based way. Basically create a view + controller combo and go from there, which works. – Master Chief Jun 4 at 3:49
Spoke too soon... It didnt work. :-(. This is driving me crzy!! I wrote a tiny app to test the basics and it works in it. So it is something to do with the way I have set up my controllers.... I am going to post this question again with that additional info to see if anyone has any ideas on how to do this. – Master Chief Jun 5 at 18:43

3 Answers

vote up 1 vote down check

Resolved it finally!!! and learnt something in return. Did cost me a few days to figure this out.

The reason my UIButton object was not working was because I found that in case of a UIIMageView object:

"initWithImage: This method adjusts the frame of the receiver to match the size of the specified image. It also disables user interactions for the image view by default."

AND my UIButton had been assigned as a subview of a UIImageView control !!!

There was no errors / warnings. It just gets disabled quietly.

Solution: Created a container UIView object which now contains the UIImageView AND the button so that the button appears as overlayed on the Image but it is actually a sibling of the image and a subview of the dummy container UIView.

link|flag
vote up 0 vote down

The problem is your addTarget:nil there. The selector you gave it for action is just a message it'll send to its target. You didn't give it a target, so it doesn't know what to do with that message. You probably want to pass in self instead of nil there.

link|flag
U R Right. Even sending Self as the target does not do it. :-( – Master Chief Jun 4 at 0:06
vote up 0 vote down

It's been awhile, but I think your addTarget needs to take the object that contains the doHelp: selector, like so:

[helpButton addTarget:self action:@selector(doHelp:)];

assuming somewhere in that same View you have:

- (void)doHelp: { }

passing nil to addTarget means that you're sending that selector to no recipient.

link|flag
my bad... in my code I do have self in the target. It still does not work. I was just trying the nil option as the doc says, it will send the action up the responder chain if nil is specified in target. – Master Chief Jun 4 at 0:04
My Target method is <pre> -(void)doHelp:(id)Sender { [self setHelpNeeded:TRUE]; [self setNeedsDisplay]; } </pre> Is there anything wrong with the method signature? – Master Chief Jun 4 at 0:05

Your Answer

Get an OpenID
or

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