Swift Tutorials _ Basic Technology _ Get current datetime, datetime formatting, and conversion

Source: Internet
Author: User
Tags date1 dateformat






Swift Tutorial _ Basic Technology _ type conversion (parent-child class conversion; Int, Double, string conversion)



Swift Tutorials _ Basic Technology _ Get current datetime, datetime formatting, and conversion




1. Get the current date time





var nowDate = NSDate()
var formatter = NSDateFormatter()
formatter.dateFormat = "yyyy-MM-dd HH:mm:ss"
var dateString = formatter.stringFromDate(nowDate)
println(dateString)

2. String conversion Date Time







var dateString1 = "2014-1-7"
var formatter1 = NSDateFormatter()
formatter1.dateFormat = "yyyy-M-d"
var date1 = formatter1.dateFromString(dateString1)
println(date1)

3. Date Time Conversion string







var date2 = NSDate()
var formatter2 = NSDateFormatter()
formatter2.dateFormat = "yyyy-MM-dd"
var dateString2 = formatter2.stringFromDate(date2)
println(dateString2)






Swift Tutorials _ Basic Technology _ Get current datetime, datetime formatting, and conversion


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.