Swift - 擷取目前時間的時間戳記(時間戳記與時間互相轉換)

來源:互聯網
上載者:User
1,時間戳記  時間戳記是指格林威治時間1970年01月01日00時00分00秒(北京時間1970年01月01日08時00分00秒)起至現在的總秒數。
2,擷取目前時間的時間戳記
1 2 3 4 5 6 7 8 9 10 11 12 //擷取目前時間 let  now =  NSDate ()   // 建立一個日期格式器 let  dformatter =  NSDateFormatter () dformatter.dateFormat =  "yyyy年MM月dd日 HH:mm:ss" print ( "當前日期時間:\(dformatter.stringFromDate(now))" )   //目前時間的時間戳記 let  timeInterval: NSTimeInterval  = now.timeIntervalSince1970 let  timeStamp =  Int (timeInterval) print ( "目前時間的時間戳記:\(timeStamp)" )

3,將時間戳記轉為日期時間
1 2 3 4 5 6 7 8 9
相關文章

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.