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
Here's @Henk-Martijn's solution updated & simplified for Swift 3:
let calendar = Calendar(identifier: .gregorian)
let date = DateComponents(calendar: calendar, hour: 1, minute: 30).date!
datePicker.setDate(date, animated: true)
Use the above code instead of something like:
datePicker.countDownDuration = 5_400