public interface UIColorPickerViewControllerDelegate
| Modifier and Type | Method and Description |
|---|---|
default void |
colorPickerViewControllerDidFinish(UIColorPickerViewController viewController)
In presentations (except popovers) the color picker shows a close button.
|
default void |
colorPickerViewControllerDidSelectColor(UIColorPickerViewController viewController)
Called when the `selectedColor` changes.
|
default void |
colorPickerViewControllerDidSelectColorContinuously(UIColorPickerViewController viewController,
UIColor color,
boolean continuously)
Called when the selected color changes.
|
default void colorPickerViewControllerDidFinish(UIColorPickerViewController viewController)
default void colorPickerViewControllerDidSelectColor(UIColorPickerViewController viewController)
default void colorPickerViewControllerDidSelectColorContinuously(UIColorPickerViewController viewController, UIColor color, boolean continuously)
viewController - This color picker.color - The new selected colorcontinuously - YES, if this update is part of a continuous user interaction (e.g. dragging through the spectrum). It's recommended
to show these updates in your UI but to not include them in any undo operations.