I have an IBAction of when the button is clicked to change my view. How can I handle multiple clicks for example if I click the button a second time to cause another action?

Or do I need to delete the button after it has been clicked and then create a new one in its place? If so how do I handle the click event?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can check the clickCount of the mouseDown event:

if ([event clickCount] > 1)
{
    // ... do double-click action
}
else
{
    // ... do single-click action
}
link|improve this answer
Sorry Im a little new to xcode, how do you set a button to be an event? – Grant Wilkinson Jan 25 at 5:19
You can make a sub-class of NSButton, make sure that your button is of that subclass and override the -mouseDown: event in your subclass. – user1118321 Jan 25 at 5:22
feedback

Your Answer

 
or
required, but never shown

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