ios - UICollection NumberOfItemsInSection 向 vars 添加常量的问题

标签 ios swift uicollectionview

我有两个不同的单元格类型类,我正在尝试使用类 PayNowCell 创建第一个索引路径,让它保持显示。而其他单元格属于 CheckOutCell 类。现在问题出在我的 func numberofitemsinsection 中。目前我正在使用 return checkout.count 但它在 View 加载时缺少 PayNowCell。如果我让它返回 checkout.count+1 以始终使 PayNowCell 可用;我的程序崩溃了,错误索引超出范围。数组结帐是一个全局变量。有人可以解释原因并提供修复吗?坚持了一段时间。代码如下。

class CheckoutController: UICollectionViewCell, UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout  {

    var inventoryTabController: InventoryTabController?

    override init(frame: CGRect){
        super.init(frame: frame)
        setupViews()

        NotificationCenter.default.addObserver(forName: .arrayValueChanged, object: nil, queue: OperationQueue.main) { [weak self] (notif) in
            self?.collectionView.reloadData()
        }

    }

    deinit {
        NotificationCenter.default.removeObserver(self)
    }

    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }

    func loadItems() -> [Item]? {
        return NSKeyedUnarchiver.unarchiveObject(withFile: Item.ArchiveURL.path) as? [Item]
    }

    func saveItems() {
        let isSuccessfulSave = NSKeyedArchiver.archiveRootObject(checkout, toFile: Item.ArchiveURL.path)
        if !isSuccessfulSave {
            print("Failed to save items...")
        }
    }

    func addItem(item: Item) {
        items.append(item)
        collectionView.reloadData()
    }

    func editItem(item: Item, index: Int) {
        items[index] = item
        collectionView.reloadData()
    }

    func prepare(for segue: UIStoryboardSegue, sender: Any?) {
        // Identify which segue is occuring.
        if segue.identifier == "ShowDetail" {
            let itemDetailViewController = segue.destination as! AddItemController

            // Get the cell that generated this segue.
            if let selectedItemCell = sender as? InventoryCell {
                let indexPath = collectionView.indexPath(for: selectedItemCell)!
                let selectedItem = items[indexPath.row]
                itemDetailViewController.item = selectedItem
            }
        }
        else if segue.identifier == "AddItem" {
            print("Adding new meal.")
        }
    }

    lazy var collectionView: UICollectionView = {
        let layout = UICollectionViewFlowLayout()
        let cv = UICollectionView(frame: .zero, collectionViewLayout: layout)

        cv.dataSource = self
        cv.delegate = self

        cv.backgroundColor = UIColor.rgb(r: 247, g: 247, b: 247)
        return cv
    }()

    let cellId = "cellId"
    let paynow = "paynow"
    func setupViews() {
        backgroundColor = .brown

        addSubview(collectionView)

        addConstraintsWithFormat("H:|[v0]|", views: collectionView)
        addConstraintsWithFormat("V:|[v0]|", views: collectionView)
        collectionView.indicatorStyle = UIScrollViewIndicatorStyle.white

        collectionView.register(PayNowCell.self, forCellWithReuseIdentifier: paynow)

        collectionView.register(CheckoutCell.self, forCellWithReuseIdentifier: cellId)
    }

    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return checkout.count //init number of cells
    }

    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {

        if indexPath.item == 0 {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "paynow", for: indexPath) as! PayNowCell //init cells
        return cell
        }else{
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cellId", for: indexPath) as! CheckoutCell //init cells
        print("Printing this \(checkout.count)")
        cell.item = checkout[indexPath.item]
        return cell
        }

    }

    func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
        //let item = items[indexPath.item]
        //inventoryController?.showItemDetailForItem(item: item, index: indexPath.item)
        print("selected")
        print(indexPath.item)
        collectionView.reloadData()
    }

    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
        if indexPath.item == 0 {
            return CGSize(width:frame.width, height: 100) //each cell dimensions
        }else{
            return CGSize(width:frame.width, height: 150) //each cell dimensions
        }
    }

    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
        return 0
    }

最佳答案

最好重新安排您的 Collection View 以包含 2 个部分:

  1. 第 0 部分:PayNow 单元格(仅 1 个单元格)
  2. 第 1 部分:结帐单元格(使用结帐数组列表)

那你就不会对indexPath.item的问题有什么疑惑了。

func numberOfSections(in collectionView: UICollectionView) -> Int {
    return 2
}

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    return section == 0 ? 1 : checkout.count
}

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {

    if indexPath.section == 0 {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "paynow", for: indexPath) as! PayNowCell //init cells
        return cell
    } else {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cellId", for: indexPath) as! CheckoutCell //init cells
        print("Printing this \(checkout.count)")
        cell.item = checkout[indexPath.item]
        return cell
    }

}

关于ios - UICollection NumberOfItemsInSection 向 vars 添加常量的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41421205/

相关文章:

ios - 将 Collection View 添加到 TableView 之一

ios - 我的一个 UICollectionViews 没有滚动或响应我的 UIScrollView 容器内的触摸事件 [Puzzling]

ios - 嵌入在 UIBarButtonItems 中的 UISearchBar(它是 iPad 文档!)

iOS:CAShapeLayer路径转换

ios - 在所有应用程序中写一次获取请求 - swift

ios - 检查是否使用 QuickAction 打开了 ViewController

ios - 细胞 View 的角半径

java - 为不同的设备生成服务器端图像?

ios - 如何更改 UITextField 的文本选择颜色?

ios - 如何仅在从网络获取数据后显示tableView? ( swift )