“类型[Shelter]的值没有成员'名称'”

时间:2019-07-01 06:04:03

标签: json swift performselector

我正在尝试在Swift中解析一些JSON的终结点,并使用name成员作为单元格的标题。我创建了一个结构,该结构符合端点提供的数据。但是,当尝试将其用作我的单元格名称时,出现错误Value of type [Shelter] has not member 'name'

一些代码段:

这是我定义的结构:

避难所:迅速

struct Shelters: Codable {
    var objects: [Shelter]
}

Shelter.swift:

struct Shelter: Codable {
    var name: String
    var shortdescription: String
    var lastedited: String
}

最后,这是从我的ViewController获得的。

var shelters = [Shelter]()


override func viewDidLoad() {
    super.viewDidLoad()

    performSelector(inBackground: #selector(backgroundProc), with: nil)
}

@objc func backgroundProc() {
    let shelterUrl = "https://192.168.1.10/api/shelters/?format=json"
    if let url = URL(string: shelterUrl) {
        if let data = try? Data(contentsOf: url) {
            parse(json: data)
        }
    }
}

//JSON Parser
func parse(json: Data) {

    let decoder = JSONDecoder()

    if let jsonShelters = try? decoder.decode(Shelters.self, from: json) {
        shelters = jsonShelters.objects
    }
}

这是代码失败的地方:

override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
   return shelters.count
}


override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "Shelters", for: indexPath)
    cell.textLabel?.text = shelters.name[indexPath.row] //It fails right here. With the error: Value of type '[Shelter]' has no member 'name'
    cell.detailTextLabel?.text = "Shelter"
    return cell
}

2 个答案:

答案 0 :(得分:1)

使用     cell.textLabel?.text = shelters[indexPath.row].name

答案 1 :(得分:0)

Value of type [Shelter] has not member 'name'

如果仔细查看错误描述,它会告诉您Type的变量:[Shelter]没有名为name的属性。换句话说,<#Obj#>.nameShelter而不是[Shelter]的属性。

因此,您需要使用shelters[indexPath.row]来引用对象而不是失败行上的数组,然后才能访问shelters[indexPath.row].name

您的行应为:

cell.textLabel?.text = shelters[indexPath.row].name