Bad converting String to NSDate

后端 未结 1 391
礼貌的吻别
礼貌的吻别 2020-12-12 08:06

I have a problem with converting String to NSDate. In my text field when user tap on it, is a possibility to chose a date using UIDatePicker. String

相关标签:
1条回答
  • 2020-12-12 08:22

    It's difficult to tell what might be going wrong for sure with the information you've provided. In a Swift playground I'm getting 2016-01-13 and not 2016-01-11, but if I change the date format, I can get 2016-05-13:

    dateFormatter.dateFormat = "yyyy-MM-dd"
    

    The uppercase MM is key. I would check out this website to play around with the date format options:

    http://nsdateformatter.com

    0 讨论(0)
提交回复
热议问题