我正在尝试获取第一条记录的值,即“2018-05-04 09:00:00 +0000”。当我打印出 `firstRecord' 时,我在终端中得到一个可选值:
可选(2018-05-04 09:00:00 +0000)。
然后我试着像这样解开它:
if dailyArray.count == 0 {
print("no record was found")
}else{
guard let firstRecord : String = dailyArray[0]["startTime"] as! String else {return}
let firstRecordArray = firstRecord.components(separatedBy: " ")
print("data exist \(firstRecordArray[0])")
}
现在 Xcode 给我一个错误,说你试图解开一个非可选值。
知道我在哪里犯错了吗?