NSDateFormatter Issues

前端 未结 1 1216
遇见更好的自我
遇见更好的自我 2021-01-27 10:35

Hi I have a question regarding NSDateFormatter. Maybe Im missing something but my NSDateFormatter is not adjusting the date correctly only the time:

// NSDateFor         


        
1条回答
  •  一生所求
    2021-01-27 11:07

    You need to use yyyy, not YYYY. The first is the regular year number (with respect to the configured calendar) and the second is for week-based calendar year.

    See this detailed article on how to use NSDateFormatter, and the distinction between the two.

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