我如何使用UICollectionView和多个URL

时间:2018-06-15 07:28:04

标签: ios json swift uicollectionview segue

我需要UICollectionView作为类别菜单,所以当用户点击每个索引(菜单选项),例如,食物,衣服,艺术等等时,我应该发出一个JSON请求,它将返回给我各自的类别产品。应该通过更改API URL的结尾来完成,因此根据UICollectionView中单击的索引,URL ID将会更改,例如:

让我们说用户点击"衣服",在UICollectionView它的索引路径3中的位置,所以此时必须更改URL ID,如下所示:

https://alodjinha.herokuapp.com/produto?categoriaId=3

这是我唯一能够做到这一点的想法,但它不起作用。你们有什么建议我让这个功能完美运作?

的ViewController:

import UIKit

class ViewController: UIViewController, UICollectionViewDataSource, UITableViewDataSource, UITableViewDelegate, UICollectionViewDelegate {

    @IBOutlet weak var tableViewTopSell: UITableView!
    @IBOutlet var collectionView: UICollectionView!
    @IBOutlet weak var collectionViewBanner: UICollectionView!
    var indexPathId = Int()
    var dataSource: [Content] = [Content]()
    var dataBanner: [Banner] = [Banner]()
    var dataTopSold: [Top10] = [Top10]()
    var dataCategoriaID: [CategoriaIDItems] = [CategoriaIDItems]()

    override func viewDidLoad() {
        super.viewDidLoad()
        //Delegate TableView
        self.tableViewTopSell.delegate = self
        //SetupNavBarCustom
        self.navigationController?.navigationBar.CustomNavigationBar()
        let logo = UIImage(named: "tag.png")
        let imageView = UIImageView(image:logo)
        self.navigationItem.titleView = imageView
        //CallAPIData
        getTopSold { (data) in
            DispatchQueue.main.async {
                self.dataTopSold = data
                self.tableViewTopSell.reloadData()
            }
        }
        getBanner { (data) in
            DispatchQueue.main.async {
            self.dataBanner = data
            self.collectionViewBanner.reloadData()
            }
        }
        getAudiobooksAPI { (data) in
            DispatchQueue.main.async {
                self.dataSource = data
                self.collectionView.reloadData()
            }
        }
    }
    //CollectionView
    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        if (collectionView == self.collectionView) {
            return  self.dataSource.count
        }else{
            return self.dataBanner.count
        }}
    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {

        if (collectionView == self.collectionView) {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "collectionViewCell", for: indexPath) as! CollectionViewCell

        let content = self.dataSource[indexPath.item]

        cell.bookLabel.text = content.descricao
        cell.bookImage.setImage(url: content.urlImagem, placeholder: "")

        return cell

        }else if (collectionView == self.collectionViewBanner) {

            let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "collectionViewCellBanner", for: indexPath) as! CollectionViewCell

            let content = self.dataBanner[indexPath.item]

            cell.bannerImage.setImage(url: content.urlImagem, placeholder: "")


            return cell
        }
        return UICollectionViewCell()
    }


    func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
//        var indexPathId:Int
        if (collectionView == self.collectionView) {
            let content = self.dataSource[indexPath.item]
            indexPathId = content.id
        }else if (collectionView == self.collectionViewBanner) {
            let content = self.dataBanner[indexPath.item]
            indexPathId = content.id
        }

        getCategoriaPorID(IdCategoria: self.indexPathId) { (data) in
            DispatchQueue.main.async {


            self.dataCategoriaID = data

            self.performSegue(withIdentifier: "segueCategorias", sender:self.dataCategoriaID)
            }
            print(self.dataCategoriaID)
        }


    }






//TableView
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return self.dataTopSold.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "topSoldCell", for: indexPath) as! TableViewCell

    let content = self.dataTopSold[indexPath.row]
    cell.labelNomeTopSell.text = content.nome
    cell.imageViewTopSell.setImage(url: content.urlImagem, placeholder: "")
    cell.labelPrecoDe.text = "R$ \(content.precoDe)"
    //Colocar strike em cima do Preco Antigo
    let oldPrice = "R$ \(content.precoDe)"
    let promotionString = oldPrice + ""
    let attributedStr = NSMutableAttributedString(string: promotionString)
    let crossAttr = [NSAttributedStringKey.strikethroughStyle: NSUnderlineStyle.styleSingle.rawValue]
    attributedStr.addAttributes(crossAttr, range: NSMakeRange(0, oldPrice.count))
    cell.labelPrecoDe.attributedText = attributedStr
    //
    cell.labelPrecoPor.text = "R$ 119.99"
    return cell
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {

    performSegue(withIdentifier: "segueId", sender:self.dataTopSold[indexPath.row])

    }
    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {

        if segue.identifier == "segueId" {

            let des = segue.destination as? TelaDetalheProdutos

            //.item possui uma propriedade instanciada na TelaDetalheProdutos
            des?.item = (sender as? Top10)
            //Segue para CollectionView Categorias
        } else if segue.identifier == "segueCategorias" {

            let desc = segue.destination as? TelaCategorias

            desc?.item = (sender as? CategoriaIDItems)
        }
    }

}
//Cast UIImage Extension
extension UIImageView{
    func setImage(url : String, placeholder: String, callback : (() -> Void)? = nil){
        self.image = UIImage(named: "no-photo")

        URLSession.shared.dataTask(with: NSURL(string: url)! as URL, completionHandler: { (data, response, error) -> Void in

            guard error == nil else{
                return
            }
            DispatchQueue.main.async(execute: { () -> Void in
                let image = UIImage(data: data!)
                self.image = image

                if let callback = callback{
                    callback()
                }
            })

        }).resume()
    }
}

0 个答案:

没有答案