gpt4 book ai didi

swift - 命名元组 - Swift - 如何使用

转载 作者:行者123 更新时间:2023-11-30 10:18:36 26 4
gpt4 key购买 nike

这是我的错误: My Error这是我在模块 A 中的函数:

func current_street(){
var l = theCoreLocationController?.ltuple //lat,long
let g = GeocodeObject(lat: l.lat, long: l.long, userstate: USER_STATE)
}

这是模块 B 中的 CoreLocationController 类:

public class CoreLocationController : NSObject, CLLocationManagerDelegate {
public var ltuple: (lat:Double, long:Double)?;
...

这是模块 C 中 theCoreLocationController 的声明:

var theCoreLocationController: CoreLocationController?

最佳答案

您的ltuple是可选的。为了实现你想要的,你应该打开它。例如

func current_street(){
if let l = theCoreLocationController?.ltuple //lat,long {
let g = GeocodeObject(lat: l.lat, long: l.long, userstate: USER_STATE)
// ...
}
}

关于swift - 命名元组 - Swift - 如何使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28659126/

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