为什么我的Collection View Cell中的nil为零?

时间:2017-08-20 05:42:02

标签: ios api swift3 uicollectionviewcell

我正在使用Alamofire,但在这种情况下,当我调试Alamofire代码时没有执行,现在我尝试手动创建url并设置标头然后调用我的API URL。

我的集合视图类如下。

//
//  CategoryViewController.swift
//  iRate
//
//  Created by Ammar Khan on 16/08/2017.
//  Copyright © 2017 theistudio. All rights reserved.
//

import UIKit
import Alamofire
import SwiftyJSON
import SDWebImage

class CategoryViewController: UIViewController, UICollectionViewDataSource, UICollectionViewDelegate
{
    @IBOutlet var myCollectionView: UICollectionView!
    var catArr:[String] = []
    var catImage:[String] = []

    let categoriesUrl = "http://127.0.0.1:8000/api/places/categories"

    override func viewDidLoad() {
        super.viewDidLoad()

        // Do any additional setup after loading the view.
    }

    override func viewDidAppear(_ animated: Bool) {

       loadCatList()
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return 2
    }

    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell", for:indexPath) as! CategoryCell
        print("Reached over here \(self.catArr.count)")
        cell.categoryName.text = self.catArr[indexPath.row]
        return cell
    }

    func loadCatList(){
        let networkSession = URLSession.shared

        var request = URLRequest(url: URL(string: self.categoriesUrl )!)

        request.setValue("application/json", forHTTPHeaderField: "Content-Type")

        let dataTask = networkSession.dataTask(with: request) { (data, response, error) in
            print("Data downloaded")

            let jsonReadable = NSString(data: data!, encoding: String.Encoding.utf8.rawValue)

            print(jsonReadable!)
            do{

                let json = JSON(jsonReadable!)

                for (_,json):(String, JSON) in json {
                    let catName  = json["category_name"].stringValue
                    let catImage = json["image"].stringValue

                    self.catArr.append(catName)
                    self.catImage.append(catImage)
                }
            }
            catch{
                print("we have a JSON exception")
            }
        }
        //
        dataTask.resume()
        print("Downloading data")
    }

    func getCount(){
        print(self.catArr.count)
    }
}

我尝试过各种方法将数据添加到我的词典中,但是我失败了,它给了我一些零。我不知道我在这里做错了什么。

PS:这不是我想要检索的,仅用于测试目的,因此仅接收两个值并将它们添加到dict。

最终结果:

正如下面提出的答案是其中一个问题,之后我接收数据并将它们附加到我的数组中的方式是错误的,所以在do语句中替换以下代码使它工作。

let json = JSON(data!)

print("The json data is \(json)")

for (_,json):(String, JSON) in json {

    let catName = json["category_name"].stringValue
    print("The catImage is \(catName)")
    let catImage = json["image"].stringValue
    self.catArr.append(catName)
    self.catImage.append(catImage)
}

DispatchQueue.main.async {
    self.myCollectionView.reloadData()
}

1 个答案:

答案 0 :(得分:1)

由于网络调用是异步的,因此您收到的是nil,因此当您的表显示时,此时它是nil,当数据到来时您不会重新加载collectionview,因此您需要在for-in循环后添加以下内容JSON

DispatchQueue.main.async {
  self.myCollectionView.reloadData()
}

更新

您应该将项目数作为数据源中的元素数返回,在本例中为self.catArr,因此请按如下方式修改代码:

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return self.catArr.count
}