• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 数据解析后重新加载 UICollection View

[复制链接]
菜鸟教程小白 发表于 2022-12-13 01:36:35 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在尝试动态更新 uicollectionview。我用了this amazing tutorial关于如何创建一个简单的 uicollection。

在使用静态项目数组时效果很好。我的问题 - 我想让 uicollection 填充我从数据库解析到新数组中的数据。在解析我的 json 数据后,我不确定如何重新加载 uicollection。

更新后的代码:

import UIKit

class Books: UIViewController, UICollectionViewDelegate {

    @IBOutlet weak var bookscollection: UICollectionView!

    var user_id: Int = 0;

    //------------ init ---------------//

    override func viewDidLoad() {
        super.viewDidLoad()

    }

    override func viewDidAppear(_ animated: Bool) {
        showtutorial()
        getuserid()
    }


    //------------ show books ---------------//

    var booknames = [String]()
    var bookcolor = [String]()
    var bookdescription = [String]()
    var bookid = [Int]()

    func posttoapi(){

        //show loading
        LoadingOverlay.shared.showOverlay(view: self.view)

        //send
        let url:URL = URL(string: "http://www.url.com")!
        let session = URLSession.shared
        var request = URLRequest(url: url)
        request.httpMethod = "OST"
        request.cachePolicy = NSURLRequest.CachePolicy.reloadIgnoringCacheData
        let paramString = "user_id=\(user_id)"
        request.httpBody = paramString.data(using: String.Encoding.utf8)

        let task = session.dataTask(with: request as URLRequest) {(data, response, error) in

            //hide loading
            LoadingOverlay.shared.hideOverlayView()

            //no response
            guard let data = data, let _:URLResponse = response, error == nil else {
                print("response error")
                return
            }

            //response, parse and send to build
            let json = String(data: data, encoding: String.Encoding.utf8);
            if let data = json?.data(using: String.Encoding.utf8){

                let json = try! JSON(data: data)

                for item in json["rows"].arrayValue {

                    //push data to arrays
                    self.booknames.append(item["name"].stringValue)
                    self.bookcolor.append(item["color"].stringValue)
                    self.bookdescription.append(item["description"].stringValue)
                    self.bookid.append(item["id"].int!)

                    //reload uicollection 
                    DispatchQueue.main.sync(execute: {
                        self. bookscollection.reloadData()  
                    })


                }

            }

        }

        task.resume()

    }




    //------------ collection -------------//

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

        print("collection view code called")
        return self.booknames.count
    }


    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        let cell = bookscollection.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath as IndexPath) as! BooksCell
        cell.myLabel.text = self.booknames[indexPath.item]
        cell.backgroundColor = UIColor.cyan // make cell more visible in our example project
        return cell
    }


    func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
        print("You selected cell #\(indexPath.item)!")
    }



    //------------ end ---------------//

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
    }


}

感谢您的帮助!



Best Answer-推荐答案


我遇到了同样的问题..你的网址有很多图片意味着重新加载 t

dispatch_async(dispatch_get_main_queue(), {
    self.collectionView.reloadData()
})

关于ios - 数据解析后重新加载 UICollection View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44261236/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap