Why doesn't Xcode have a Event/Arguments when linking an object with an IBAction

63 Views Asked by At

I'm a complete newbie with Objective-C, Xcode, and the design itself. I have had a bit more experience developing iOS on Xcode, and when you wanted to link an action (i.e Slider changing value), you could select from many options unlike OS X.
How can I get around this with the same results, as using a pre-generated (control-drag slider to ViewController.h and .m) only fires an action at the mouseUp action.

EDIT #1: Sorry for making my question quite confusing. I am wondering how to receive actions while dragging.

Here's whats happening in picture form:

As you ca see, there is no arguments or event option

Most likely something very easy that I'm not getting at all.

2

There are 2 best solutions below

1
On

I think you did not set controller from Storyboard. Please verify your controller class is properly set by following the image below

enter image description here

1
On

Your question is very confused. Are you trying to ask how to make a slider send its message while dragging, instead of just at the end?

On Mac, controls only have one target/action, there are no multiple actions. Objects have other properties that control when the actions are actually sent, if needed. In case of NSSlider, you probably forgot to set its 'continuous' property.