gpt4 book ai didi

swift - 使用可选的完成处理程序调用自身进行迭代,不会第二次完成

转载 作者:行者123 更新时间:2023-11-28 13:50:26 24 4
gpt4 key购买 nike

我收到这个错误:

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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com