Xcode 12 display wrong
Hello,
Since Xcode 12 the calendar display not as usual. Background changed and layout too. It's not really usable in current state.
Any fix ?
Thanks
Please check this. Hope this will work.
[dateSelectionController.datePicker setPreferredDatePickerStyle:UIDatePickerStyleWheels];
Please check this. Hope this will work.
[dateSelectionController.datePicker setPreferredDatePickerStyle:UIDatePickerStyleWheels];
It works for me ,thanks a lot
if (@available(iOS 13.4, *)) { [dateSelectionController.datePicker setPreferredDatePickerStyle:UIDatePickerStyleWheels]; } else { // Fallback on earlier versions }