SKUButtonDelegate

Extends Protocol:
NSObject
Declared In:

Introduction

Delegate protocol for SKUButton. Only used if flagged for sending delegate signals.



Methods

-doButtonDown:
-doButtonUp:inBounds:
-valueChanged:

doButtonDown:


@optional

-(void)doButtonDown:(SKUButton*)button;
Parameters
button

The button pressed.

Discussion

Optional: Called on the delegate when a button is pressed.


doButtonUp:inBounds:


@optional

-(void)doButtonUp:(SKUButton*)button inBounds:(BOOL)inBounds;
Parameters
button

The button released.

inBounds

Boolean determining whether the release was inside button bounds (YES) or not (NO).

Discussion

Optional: Called on the delegate when a button is released.


valueChanged:


@optional

-(void)valueChanged:(SKUSliderButton*)button;
Parameters
button

button whose value changed

Discussion

Optional: Called on delegate when a button's value changes (only used with SKUSliderButton)