gpt4 book ai didi

ios - Swift 3 - 错误 'Contextual type ' AnyObject' 不能与字典文字一起使用'

转载 作者:行者123 更新时间:2023-11-30 12:22:40 24 4
gpt4 key购买 nike

我已经通过 Cocoapods 下载了“GeoJSON”pod。但是当我尝试运行我的应用程序时,我收到以下错误。

错误:上下文类型“AnyObject”不能与字典文字一起使用。 (Image)

public var dictionaryRepresentation: [String: Any] {
return [
"geometry": [
"coordinates": self.geometryCoordinates,
"type": type(of: self).type
],
"type": "Feature",
"properties": [:]
]
}

最佳答案

我是这样解决的

public var dictionaryRepresentation: [String: Any] {
return [
"geometry": [
"coordinates": self.geometryCoordinates,
"type": Self.type
] as [String: Any],
"type": "Feature",
"properties": [:]
]
}

关于ios - Swift 3 - 错误 'Contextual type ' AnyObject' 不能与字典文字一起使用',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44602866/

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