- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我收到这个错误:
Value of optional type '((RestTime) -> ())?' must be unwrapped to a value of type '(RestTime) -> ()'
我从 VC 调用函数:
let calculateSegmentDirections = CalculateSegmentDirections(locationManager: locationManager)
calculateSegmentDirections.calculateSegmentDirections(index, time: time, routes: routes, loc: loc) { restTime in
print("4")
}
func calculateSegmentDirections(_ index: Int, time: TimeInterval, routes: [MKRoute], loc: LocationModel, completion: ((_ restTime: RestTime) -> ())?) {
print("1")
if let routeResponse = response?.routes {
print("2")
self.calculateSegmentDirections(index+1, time: timeVar, routes: routesVar, loc: restLocation, completion: nil)
} else {
let restTime = RestTime(objectID: restLocation.objectID, time: timeVar, routes: routesVar)
print("3")
completion(restTime)
}
}
完整形式的函数从 VC 调用,然后迭代自身以从 MKdirections 创建一条路线。我的问题是,我可以通过这种方式使用可选的完成处理程序吗?
控制台像预期的那样打印 1, 2, 1, 3,但是没有调用完成。 4 从未被解雇。 completion = nil,所以当我用 if completion = completion 解包时它不起作用。
此外,completion?(restTime) 也不起作用,将默认值设置为 nil 也不起作用,就像我检查 print(completion) = nil 时一样。
猜测发生了什么:第一个完成处理程序是否“完成功能”因此第二个不触发?我传递了一个 nil 值,而不是不运行它?
抱歉,如果这很简单,谷歌是紫色的,但仍然不确定我做错了什么。
最佳答案
我认为问题出在这里:
// ...
print("2")
self.calculateSegmentDirections(index+1, time: timeVar,
routes: routesVar, loc: restLocation, completion: nil)
// ...
当您递归调用calculateSegmentDirections
时,您不会提交完成处理程序,而是提交nil
。这是故意的吗?在我看来,这应该是:
// ...
print("2")
self.calculateSegmentDirections(index+1, time: timeVar,
routes: routesVar, loc: restLocation, completion: completion)
// ...
关于swift - 使用可选的完成处理程序调用自身进行迭代,不会第二次完成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54709627/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!