UNIQLO’s new alarm app has a custom UIDatePicker:

And I want to create my own custom UIDatePicker.
I tried to change the appearance of the DatePicker, but looking for UI_APPEARANCE_SELECTOR in the UIDatePicker returns nothing.
Meaning that its not possible to change any values, as per the docs:
How can change my UIDatePicker‘s appearance?
The API does not provide a way to do this.
You can make a pretty convincing replica yourself using a UIPickerView rather than using UIDatePicker.
As the UIDatePicker or UIPickerView don’t have the UI_APPEARANCE_SELECTOR and even you can’t change UIDatePicker contents’ appearance as its UIControl and not having any delegate so it has its native appearance whereas in case of UIPickerView you can change its contents’ appearance similar as in UITableView.
Check this out.