块定义如下
// Declare block ( optional )
typealias sorting = (([Schedule], [String]) -> [Schedule])?
var sortSchedule: sorting = { (schedules, sortDescription) in
var array = [Schedule]()
for string in sortDescription
{
for (index, schedule) in schedules.enumerate()
{
if string == schedule.startTime
{
array.append(schedule)
break
}
}
}
return array
}
在某些时候,我正在调用一个块
let allSchedules = sortSchedule?(result, sortDescription())
for schedule in allSchedules // Xcode complains at here
{
..........
}
我使用?
是因为我想确保如果块存在,那么做点什么。但是,Xcode 抱怨for
循环
value of optional type [Schedule]? not upwrapped, did you mean to use '!' or '?'?
我不知道为什么,因为块的返回类型是一个可以有 0 个或多个项目的数组。
有谁知道为什么 xcode 抱怨。