Package apple.uikit.protocol
Interface UIColorPickerViewControllerDelegate
-
public interface UIColorPickerViewControllerDelegate
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voidcolorPickerViewControllerDidFinish(UIColorPickerViewController viewController)In presentations (except popovers) the color picker shows a close button.default voidcolorPickerViewControllerDidSelectColor(UIColorPickerViewController viewController)Called when the `selectedColor` changes.
-
-
-
Method Detail
-
colorPickerViewControllerDidFinish
default void colorPickerViewControllerDidFinish(UIColorPickerViewController viewController)
In presentations (except popovers) the color picker shows a close button. If the close button is tapped, the view controller is dismissed and `colorPickerViewControllerDidFinish:` is called. Can be used to animate alongside the dismissal.
-
colorPickerViewControllerDidSelectColor
default void colorPickerViewControllerDidSelectColor(UIColorPickerViewController viewController)
Called when the `selectedColor` changes.
-
-