为了从飞行员那里下载NOTAM,我设法从America FAA网站上添加了此API。我设法发送参数“ API密钥,位置,状态”的请求。我取回了我的JSON数据,并且工作正常。现在我的问题是我想在tableView上显示以JSON格式返回的数组的一项,即称为“ all”的项。

我创建了IBOutlet。我给了单元格标识符,但我被卡在这里

import UIKit
import Alamofire
import SwiftyJSON

class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
    //Constants
    let notamUrl = "https://v4p4sz5ijk.execute-api.us-east-1.amazonaws.com/anbdata/states/notams/notams-realtime-list"
    let api_key = "mykey"
    let notamModel = ModelloNotam()

    @IBOutlet weak var tableView: UITableView!

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return //????????? i dont know
    }

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "customCell", for: indexPath)

        // ????????? i dont know
        return cell
    }

    override func viewDidLoad() {
        super.viewDidLoad()

        tableView.delegate=self
        tableView.dataSource=self

        func getNOTAM (url:String,parameters:[String:String]){
            Alamofire.request(url, method: .get, parameters: parameters).responseJSON {
                response in
                if response.result.isSuccess{
                    let notamJSON : JSON = JSON (response.result.value!)

                    self.displayNotam(json: notamJSON)
                } else{
                    print("errore connessione\(response.result.error)")
                }
            }
        }

        var locations = "VMMC"
        var state = "CHN"
        let params : [String : String] = ["locations" : locations, "state" : state, "api_key" : api_key]
        getNOTAM(url: notamUrl, parameters: params)
    }

    func displayNotam (json:JSON) {
        let conta = json.count

        for var i in 0...conta {
            i = i + 1
            notamModel.all = json [i]["all"].stringValue
            notamModel.type = json [i]["type"].stringValue
            //            print("The NOTAM type is \(notamModel.type)")
            //            print(notamModel.all)
            //            print("************************")
        }
    }
}

最佳答案

请参考本教程https://www.youtube.com/watch?v=sd7d4eoM54U&t=1857s并根据JSON文件对数据进行建模。网络请求超出主执行队列。

10-08 13:43
查看更多