Swift : Map 函数在解包 Optional 值时发现 nil

Swift : Map function found nil while unwrapping an Optional value

我正在尝试比较时间,然后 ,但它在我身上崩溃了。我实际上有相同的代码,但它在 dateComponents 行或 sorted() 行上不断崩溃,具体取决于我放置函数的位置。

func setCurrentTime(times: [String]) {
    let formatter = DateFormatter()
    formatter.dateFormat = "h: mm a"

    let timeMap = times.map {
        Calendar.current.dateComponents([.hour, .minute], from: formatter.date(from: [=11=])!)
    } // Crashes here ...

    let upcomingTIme = timeMap.map {
        Calendar.current.nextDate(after: Date(), matching: [=11=], matchingPolicy: .nextTime)!
    }

    print(upcomingTime) // Returns []

    let nextTime = upcomingTIme.sorted().first! // Crashes here too, error line shown below

    print(nextTime) // Doesn't get printed...
}

错误:

[]
fatal error: unexpectedly found nil while unwrapping an Optional value

如果我传入一个数组或在函数中硬编码一个数组,它仍然会崩溃。

您遇到的崩溃是由于传递值的格式与日期格式化程序中使用的格式不同所致。

formatter.dateFormat = "h: mm a"

虽然您的格式化程序在 'h:''mm' 之间使用 space 并且您可能有传递数据如下。 (在 4:30 AM

中没有 4: 和 30 之间的 space
let times = ["4:30 AM","1:00 PM","3:20 PM","6:40 PM","9:10 PM"] 

日期格式化程序不会 return 有效日期并且您使用了 '!'导致崩溃的运算符。

您可以更改日期格式或根据格式传递数据。这将解决问题,您将获得

  • 这是时间图

[小时:4 分钟:30 isLeapMonth:false,小时:13 分钟:0 isLeapMonth:false,小时:15 分钟:20 isLeapMonth:false,小时:18 分钟:40 isLeapMonth:false,小时:21 分钟: 10 isLeapMonth: false ]

  • 这是下一个日期

2017-10-01 13:10:00 +0000

  • 这是即将到来的日期

[2017-10-01 23:00:00 +0000, 2017-10-02 07:30:00 +0000, 2017-10-02 09:50:00 +0000, 2017-10-01 13:10:00 +0000, 2017-10-01 15:40:00 +0000]