Swift-将数组分配给collectionviewcell中的tableview

问题描述 投票:1回答:1

[我在构建应用程序时正在学习Swift。无论如何,我试图将4个不同的数组分配给4个不同collectionviewcells中的4个不同tableview。我想知道如何放置:

var fallQuarter : [String] = ["HELLO", "HELLO"]
var winterQuarter : [String] = ["BYE", "BYE", "BYE"]
var springQuarter : [String] = ["HI", "HI"]
var summerQuarter : [String] = ["OKAY", "OKAY"]

这四个数组(例如)到collectionviewcell中的tableview。现在,每个collectionviewcell中的每个tableview似乎都显示这4个数组的所有9个项目。但是,我想将每个数组分配给collectionviewcell中的每个tableview。感谢您的提前帮助。

“示例图像”“>

这里是主要代码:

import UIKit

    class yearOne: UICollectionViewController {

    let customCellIdentifier = "cellID"

    let quarters = [
        customLabel (title: "Fall Quarter"),
        customLabel (title: "Winter Quarter"),
        customLabel (title: "Spring Quarter"),
        customLabel (title: "Summer Quarter")
    ]


    override func viewDidLoad() {
        super.viewDidLoad()

        self.collectionView!.register(quarterCell.self, forCellWithReuseIdentifier: 
        customCellIdentifier)

        navigationItem.title = "Year One"
        navigationController?.navigationBar.prefersLargeTitles = true
        collectionView?.backgroundColor = .lightGray
        //navigationItem.prompt = "Click the + button to add courses, Swipe left on a course 
        to delete."

    }


    override func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection 
    section: Int) -> Int {
        // #warning Incomplete implementation, return the number of items
        return quarters.count
    }

    override func collectionView(_ collectionView: UICollectionView, cellForItemAt 
    indexPath:IndexPath) -> UICollectionViewCell {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: 
        customCellIdentifier, 
        for: indexPath) as! quarterCell
        cell.layer.borderColor = UIColor.black.cgColor
        cell.layer.borderWidth = 1
        cell.layer.cornerRadius = 5
        cell.quarters = self.quarters[indexPath.row]
        return cell
    }

    @objc func buttonAction(sender: UIButton!) {
        let destination = SearchPage()
        navigationController?.pushViewController(destination, animated: true)
    }

}

这里是扩展名:


extension yearOne : UICollectionViewDelegateFlowLayout{

    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: 
    UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
        let width = (view.frame.width - 30)
        return CGSize(width: width, height: 200)
    }

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

    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: 
    UICollectionViewLayout, insetForSectionAt section: Int) -> UIEdgeInsets {
        UIEdgeInsets(top: 30, left: 10, bottom: 30, right: 10)
    }

}

这里是QuarterCell:


class quarterCell: UICollectionViewCell, UITableViewDelegate, UITableViewDataSource{

    var fallQuarter : [String] = ["HELLO", "HELLO"]
    var winterQuarter : [String] = ["BYE", "BYE", "BYE"]
    var springQuarter : [String] = ["HI", "HI"]
    var summerQuarter : [String] = ["OKAY", "OKAY"]

    let tableView:UITableView = {
        let tableView = UITableView()
        tableView.translatesAutoresizingMaskIntoConstraints = false
        return tableView
    }()

    let cellId = "coursesName"

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

        switch section {
        case 0:
            return fallQuarter.count
        case 1:
            return winterQuarter.count
        case 2:
            return springQuarter.count
        case 3:
            return summerQuarter.count
        default:
            return 5
        }
    }

    let sectionsArray: [String] = ["fall", "winter", "spring", "summer"]

    func numberOfSections(in tableView: UITableView) -> Int {
        return sectionsArray.count
    }

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> 
    UITableViewCell {
        let sectionName = sectionsArray[indexPath.section]
        tableView.backgroundColor = UIColor.white

        switch sectionName {
        case "fall":
            let cell = tableView.dequeueReusableCell(withIdentifier: cellId, for: indexPath)
            let fall = self.fallQuarter[indexPath.row]
            cell.textLabel?.text = fall
            cell.backgroundColor = UIColor.white
            return cell
        case "winter":
            let cell = tableView.dequeueReusableCell(withIdentifier: cellId, for: indexPath)
            let winter = self.winterQuarter[indexPath.row]
            cell.textLabel?.text = winter
            cell.backgroundColor = UIColor.white
            return cell
        case "spring":
            let cell = tableView.dequeueReusableCell(withIdentifier: cellId, for: indexPath)
            let spring = self.springQuarter[indexPath.row]
            cell.textLabel?.text = spring
            cell.backgroundColor = UIColor.white
            return cell
        case "summer":
            let cell = tableView.dequeueReusableCell(withIdentifier: cellId, for: indexPath)
            let summer = self.summerQuarter[indexPath.row]
            cell.textLabel?.text = summer
            cell.backgroundColor = UIColor.white
            return cell
        default:
            return UITableViewCell()
        }
    }

    func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat 
    {
        return 40
    }

    func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
        return true
    }

    func tableView(_ tableView: UITableView, commit editingStyle: 
    UITableViewCell.EditingStyle,forRowAt indexPath: IndexPath) {
        if (editingStyle == .delete) {
            // handle delete (by removing the data from your array and updating the 
            tableview)

            self.tableView.reloadData()
        }
    }

    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        //add class information???
    }

    var quarters: customLabel? {
        didSet {
            guard let quarters = quarters else {return}
            quarterLabel.text = quarters.title
        }
    }

    override init(frame: CGRect){
        super.init(frame: frame)
        addSubview(tableView)
        setupView()
    }

    func setupView(){

        tableView.delegate = self
        tableView.dataSource = self
        tableView.register(UITableViewCell.self, forCellReuseIdentifier: cellId)

        self.backgroundColor = UIColor.white
        contentView.addSubview(quarterLabel)
        contentView.addSubview(addButton)

        quarterLabel.translatesAutoresizingMaskIntoConstraints = false
        quarterLabel.topAnchor.constraint(equalTo: contentView.topAnchor, constant: 
        10).isActive = true
        quarterLabel.leadingAnchor.constraint(equalTo: contentView.leadingAnchor, constant: 
        10).isActive = true

        addButton.translatesAutoresizingMaskIntoConstraints = false
        addButton.topAnchor.constraint(equalTo: quarterLabel.topAnchor, constant: 
        -5).isActive = true
        addButton.trailingAnchor.constraint(equalTo: contentView.trailingAnchor, constant: 
        -10).isActive = true
        addButton.heightAnchor.constraint(equalToConstant: 25).isActive = true
        addButton.widthAnchor.constraint(equalToConstant: 25).isActive = true

        tableView.translatesAutoresizingMaskIntoConstraints = false
        tableView.topAnchor.constraint(equalTo: contentView.topAnchor, constant: 
        35).isActive = true
        tableView.leadingAnchor.constraint(equalTo: contentView.leadingAnchor, constant: 
        5).isActive = true
        tableView.trailingAnchor.constraint(equalTo: contentView.trailingAnchor, constant: 
        -10).isActive = true
        tableView.bottomAnchor.constraint(equalTo: contentView.bottomAnchor, constant: 
        -5).isActive = true

        // each collection view cell (row) = should display xxQuarter Array
        // call indexpath for the collection view and set the tableview to the collection 
        view
        // quarterCell.indexPath

        //if(buttonAction) is cicked from searchPage(), then add the UI label
        //remove course function, add course function

    }

    let quarterLabel : UILabel = {
        let label = UILabel()//frame: CGRect(x: 15, y: -75, width: 300, height: 50))
        label.translatesAutoresizingMaskIntoConstraints = false
        label.textColor = UIColor.black
        label.font = UIFont.boldSystemFont(ofSize: 16)
        //label.textAlignment = .center
        return label
    }()

    let addButton : UIButton = {
        let button = UIButton()//frame: CGRect(x: 345, y: 10, width: 30, height: 30))
        button.setImage(UIImage(named: "addicon"), for: .normal)
        button.imageEdgeInsets = UIEdgeInsets(top: 5, left: 5, bottom: 5, right: 5)
        button.addTarget(self, action: #selector(yearOne.buttonAction), for: .touchUpInside)
        return button
    }()

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

}

[我在构建应用程序时正在学习Swift。无论如何,我试图将4个不同的数组分配给4个不同collectionviewcells中的4个不同tableview。我想知道如何放置:...

ios arrays swift
1个回答
0
投票

也许您可以尝试使用多维数组:

© www.soinside.com 2019 - 2024. All rights reserved.