In fact, i found in definition it is as:
...
{
float rotation;
}
- (void) setRotation: (float) r;
- (float) rotation;
...
And in Inteface Builder it bind the NSSlider to rotation
Usually in order to connect NSSlider and setRotation, I set
-(IBAction) setRotation: (float) r; and then connect NSSlider and setRotation in Inteface Builder
But in this sample, it does not do like this usual way. I think they configure something in Inteface Builder, but i dont know how.