如何将此字符串“2016-04-14T10:44:00+0000”转换为NSDate并只保留年、月、日、小时?

中间的T真的让我在处理日期时不习惯。


当前回答

就用SwifterSwift吧。

stringDate = "2020-04-26T08:56:17.987Z"
let date = Date(iso8601String: stringDate)

其他回答

Convert the ISO8601 string to date let isoDate = "2016-04-14T10:44:00+0000" let dateFormatter = DateFormatter() dateFormatter.locale = Locale(identifier: "en_US_POSIX") // set locale to reliable US_POSIX dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ssZ" let date = dateFormatter.date(from:isoDate)! Get the date components for year, month, day and hour from the date let calendar = Calendar.current let components = calendar.dateComponents([.year, .month, .day, .hour], from: date) Finally create a new Date object and strip minutes and seconds let finalDate = calendar.date(from:components)


还可以考虑iOS 10 / macOS 10.12中引入的方便格式化程序ISO8601DateFormatter:

let isoDate = "2016-04-14T10:44:00+0000"

let dateFormatter = ISO8601DateFormatter()
let date = dateFormatter.date(from:isoDate)!

嗨,你有单独的T格式,然后转换为你喜欢

// create dateFormatter with UTC time format
let dateFormatter = NSDateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss"
dateFormatter.timeZone = NSTimeZone(name: "UTC")
let date = dateFormatter.dateFromString("2015-04-01T11:42:00")

// change to a readable time format and change to local time zone
dateFormatter.dateFormat = "EEE, MMM d, yyyy - h:mm a"
dateFormatter.timeZone = NSTimeZone.localTimeZone() 
let timeStamp = dateFormatter.stringFromDate(date!)

只是 步骤1 > 从JSON或dataSource获取String值

步骤2 >创建本地变量并赋值。

let startDate = CurrentDashBoard.startdate

步骤3>创建DateFormatter实例。

let dateFormatter = DateFormatter()

步骤4 > 从dateFormatter调用dateFormat并提供保存的日期dataType。

dateFormatter.dateFormat = "MM-dd-yyyy HH:mm:ss"("may be String formate")

步骤5 > 将Local变量赋给要转换的变量。

let dateFromStringstartDate : NSDate = dateFormatter.date(from: startDate)! as NSDate

步骤6 > 请按以下代码填写所需日期。

dateFormatter.dateFormat = "MM/dd/yyyy HH:mm:ss"

步骤6>分配给label/text

cell.lblStartDate.text = String(format: "%@", strstartDate)

代码:

let startDate = CurrentDashBoard.startdate let dateFormatter = DateFormatter() 
dateFormatter.dateFormat = "MM-dd-yyyy HH:mm:ss" let dateFromStringstartDate : 
NSDate = dateFormatter.date(from: startDate)! as NSDate
dateFormatter.dateFormat = "MM/dd/yyyy HH:mm:ss"
let strstartDate = dateFormatter.string(from: dateFromStringstartDate as Date)

那SwiftDate呢?Swift最好的日期和时间解析和操作库。

https://github.com/malcommac/SwiftDate#1-date-parsing

使用可可豆荚安装: https://github.com/malcommac/SwiftDate/blob/master/Documentation/0.Informations.md#installation

然后:

import SwiftDate

// All default datetime formats (15+) are recognized automatically
let _ = "2010-05-20 15:30:00".toDate()
// You can also provide your own format!
let _ = "2010-05-20 15:30".toDate("yyyy-MM-dd HH:mm")
// All ISO8601 variants are supported too with timezone parsing!
let _ = "2017-09-17T11:59:29+02:00".toISODate()
// RSS, Extended, HTTP, SQL, .NET and all the major variants are supported!
let _ = "19 Nov 2015 22:20:40 +0100".toRSS(alt: true)

在swift4,

    var Msg_Date_ = "2019-03-30T05:30:00+0000"

    let dateFormatterGet = DateFormatter()
    dateFormatterGet.dateFormat = "yyyy-MM-dd'T'HH:mm:ss"
    let dateFormatterPrint = DateFormatter()
    dateFormatterPrint.dateFormat = "MMM dd yyyy h:mm a"  //"MMM d, h:mm a" for  Sep 12, 2:11 PM
    let datee = dateFormatterGet.date(from: Msg_Date_)
    Msg_Date_ =  dateFormatterPrint.string(from: datee ?? Date())

    print(Msg_Date_)

//输出:- 2019年3月30日05:30 PM