-2

块定义如下

 // 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 抱怨。

4

1 回答 1

1

?在行中使用的let allSchedules = sortSchedule?(result, sortDescription())不是“确定是否存在该块”,而只是为了说明,您理解它可以是nil. 幕后allSchedules有型Array<Schedule>?。而且你不能使用for in循环nil。你最好使用可选绑定:

if let allSchedules = sortSchedule?(result, sortDescription())
{
    for schedule in allSchedules
    {
       //..........
    }
}
于 2016-07-25T14:35:28.060 回答