I have a UIDate Picker embedded in a static TableViewCell and at the moment I disabled most of the code except the code responsible for the date picker.
I\'m using t
Similar problem as above, I used
DispatchQueue.main.asyncAfter(deadline: .now()) { self.datePicker.countDownDuration = 60 }
to put it on the next runloop. Seems a viable workaround.