How can I make a color wheel, color picker, or hue selector in iOS for use on the iPad.
Here is an example picture of a color picker similar to what I want.
@All Thanks in advance.
You don't need 3rd party code if you target your app to iOS 14. It has the UIColorPickerViewController
and it's quite straightforward.
let picker = UIColorPickerViewController()
picker.delegate = self
present(picker, animated: true, completion: nil)
You can set the intitial selectedColor, or change supportsAlpha to false to hide the alpha slider and only allow opaque colors.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With