How to set a specific default time for a date picker in Swift

47,504

Solution 1

Are you looking for setting the time through a string. If that''s the case you can use a date formatter like this.

let dateFormatter = NSDateFormatter()
dateFormatter.dateFormat =  "HH:mm"

let date = dateFormatter.dateFromString("17:00")

datePicker.date = date

Adding an init to the Picker class

init(time:String) {
    super.init(frame: CGRectMake(0, 0, UIScreen.mainScreen().bounds.size.width, UIScreen.mainScreen().bounds.size.height))

    setupView()
    let dateFormatter = NSDateFormatter()
    dateFormatter.dateFormat =  "HH:mm"

    if let date = dateFormatter.dateFromString("17:00") {
        datePicker.date = date
    }
}

Solution 2

Swift 5

let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "HH:mm"
if let date = dateFormatter.date(from: "17:00") {
    print(date) // 2000-01-01 22:00:00 +0000
    datePicker.date = date
}

Additional note: If you've already set datePicker.minimumDate and you're using this dateFormat the date/time will default to it's earliest possible date--wasted an hour on this :|

Solution 3

with swift 4+

let dateFormatter = DateFormatter()
dateFormatter.dateFormat =  "HH:mm"
let date = dateFormatter.date(from: "17:00")
datePicker.date = date
Share:
47,504
Admin
Author by

Admin

Updated on July 09, 2022

Comments

  • Admin
    Admin almost 2 years

    Is there any way to set a date picker to display a specific time on load? I have four date picker instances initiated from four text fields for Start Time, Finish Time, Start Date and Finish Date using the squimer/datePickerDialog subclass from GitHub that pops up in a UIAlertView.

    In my app a default start time would be 7:00 AM and a default finish time would be 5:00 PM and let the user adjust around those times.

    All I can see is that you can set the datePicker.defaultDate to currentDate, minimumDate or maximumDate and only once. Is it possible set the defaultDate to hardcoded strings of sTime = "07:00" and fTime = "17:00" in my calls from the ViewController?

    Any help would be appreciated.

    EDIT: This is how I am calling the subclass from my viewController

    @IBAction func setFT(sender: UITextField) {
        resignKeyboardCompletely(sender)
        DatePickerDialog().show("Pick a Finish Time", doneButtonTitle: "Done", cancelButtonTitle: "Cancel", datePickerMode: .Time) {
            (timeFinish) -> Void in
            self.dateFormatter.dateFormat = "HH:mm"
            let finTime = self.dateFormatter.stringFromDate(timeFinish)
            self.finishTime.text = finTime
        }
        defaults.setObject(finishTime.text, forKey: "finishTime")
        print(finishTime.text)
    }
    

    Note that throughout this I am also trying to maintain persistence through NSUser Defaults.

  • Admin
    Admin over 8 years
    That is the kind of thing I have been experimenting with but I'm not quire sure how to implement it. This is how I am suscessfully calling the subclass datePickerDialog.swift.
  • Admin
    Admin over 8 years
    @IBAction func setFT(sender: UITextField) { resignKeyboardCompletely(sender) DatePickerDialog().show("Pick a Finish Time", doneButtonTitle: "Done", cancelButtonTitle: "Cancel", datePickerMode: .Time) { (timeFinish) -> Void in self.dateFormatter.dateFormat = "HH:mm" let finTime = self.dateFormatter.stringFromDate(timeFinish) self.finishTime.text = finTime } defaults.setObject(finishTime.text, forKey: "finishTime") print(finishTime.text)
  • Moriya
    Moriya over 8 years
    put this code in viewDidLoad if you want your datePicker to start at this time... I'm not sure what you are asking though. You should probably try to explain a bit further what you are attempting and what exactly you have tried that has failed
  • Admin
    Admin over 8 years
    Sorry. Very new to all this, including stack overflow.
  • Moriya
    Moriya over 8 years
    Are you using a third party data picker dialog? Or did you build DatePickerDialog yourself?
  • Admin
    Admin over 8 years
    As I said "squimer/datePickerDialog.swift subclass from GitHub" It's pretty minimalist and I have modified it slightly.
  • Moriya
    Moriya over 8 years
    It seems that project doesn't give any way to modify that so you would have to modify it. easiest way would probably be to add an init(time:String) or init(date:NSDate) that then sets the internal date picker up with the code in my answer.
  • Moriya
    Moriya over 8 years
    Added some code to the answer for you... I haven't tested it so you might have to work around some issues but I think the general idea should be sound.