You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if #available(iOS 17.4,*){
picker.datePickerMode =.yearAndMonth
}else{
picker.datePickerMode =.date
// Technically, iOS did support it, but it had to be set like this.
picker.datePickerMode =.init(rawValue:4269)??.date
}
if #available(iOS 13.4,*){
picker.preferredDatePickerStyle =.wheels
}
The text was updated successfully, but these errors were encountered:
iOS now supports a year/month picker natively.
The text was updated successfully, but these errors were encountered: