gpt4 book ai didi

json - Haneke 导致 SwiftyJSON 的 'JSON?' 类型崩溃

转载 作者:行者123 更新时间:2023-11-30 10:09:08 25 4
gpt4 key购买 nike

我有一个工作正常的 TableViewCell。但是,一旦我 import Haneke,我就会收到 var post: JSON? 错误。 {..:

'JSON' is ambigious for type lookup in this context

import UIKit
import SwiftyJSON
// import Haneke

class DiscoverTableViewCell: UITableViewCell {

var post: JSON? {
didSet {
self.setupPost()
}
}

我做错了什么?

顺便说一句,我正在使用 pod

pod 'Alamofire', '~> 3.0'pod 'SwiftyJSON', '~> 2.2'pod 'HanekeSwift'

这是我在 TableViewController 中声明它的方式:

  import Alamofire
import SwiftyJSON

var results: [JSON]? = [] // SwiftyJSON's [JSON]

func smt() {
...
let json = JSON(response.result.value!)

if let data = json["data"].arrayValue as [JSON]? {
self.results = data
}

最佳答案

可以有相同的类型别名

您可以像这样使用SwiftyJson:

let json = SwiftyJSON.JSON(response.result.value!)
let result = Haneke.AnyFunction()

关于json - Haneke 导致 SwiftyJSON 的 'JSON?' 类型崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34101062/

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