У меня есть TableView, где у каждого элемента есть код, когда пользователь выбирает любой элемент из этой таблицы, он должен извлечь данные на сервер через HTTP-POST и загрузить CollectionView в другое представление.
Когдаэто новое представление открывает коллекцию данных пустую, а затем сжимает поток для извлечения данных через HTTP-POST, поиск работает, но данные не отображаются в CollectionView после заполнения коллекции.
Это мойкод:
class ViewController: UIViewController, UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout {
@IBOutlet var root: UIView!
@IBOutlet weak var lbDescricao: UILabel!
@IBOutlet weak var colData: UICollectionView!
var desc: String = ""
var codigoCategoria: Int!
var listaProdutos: Array<Produto>!
var items: [IndexPath] = Array()
override func viewDidLoad() {
super.viewDidLoad()
self.doPostProdutos()
lbDescricao.text = self.desc
print( self.listaProdutos ) // Here it show “nil”
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return listaProdutos.count
}
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
self.items.append(indexPath)
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath) as! CollectionCellProduto
cell.imgProduto.image = UIImage( named: listaProdutos[indexPath.item].imagem )
cell.lbNome.text = listaProdutos[indexPath.item].nome
cell.lbPreco.text = "R$ " + String( listaProdutos[indexPath.item].preco )
return cell;
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
let padding: CGFloat = 50
let collectionViewSize = collectionView.frame.size.width - padding
return CGSize( width: collectionViewSize/2, height: collectionViewSize/2 )
}
func doPostProdutos() {
let parameter = ["categoria":self.codigoCategoria]
let url = URL(string: "localhost/adm/api/produtos/produtosCategoria.php")
var request = URLRequest(url: url!)
request.httpMethod = "POST"
request.setValue("application/x-www-form-urlencoded", forHTTPHeaderField: "Content-Type")
let httpBody = try? JSONSerialization.data(withJSONObject: parameter, options: [])
request.httpBody = httpBody
let session = URLSession.shared
session.dataTask(with: request) { (data, response, error) in
if let response = response {
print( response )
}
if let data = data {
DispatchQueue.main.async{ // Thread
do {
self.listaProdutos = Array()
let json = try JSONSerialization.jsonObject(with: data, options: []) as! [[String: Any]]
for prod in json {
let nome = prod["nome"] as! String
let preco = (prod["preco"] as! NSString).doubleValue
let img = prod["imagem"] as! String
let produto: Produto = Produto(nome: nome, preco: preco, img: img)
self.listaProdutos.append(produto)
}
// Refresh
print( self.listaProdutos )
self.colData.reloadData()
self.colData.reloadItems(at: self.items)
}
catch {
print(error)
}
}
}
}.resume()
}
}
Что я делаю не так?