gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-01 22:03:41 25 4
gpt4 key购买 nike

我在构建应用程序时正在学习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")
}

}

最佳答案

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

let data = [["HELLO", "HELLO"], ["BYE", "BYE", "BYE"], ["HI", "HI"], ["OKAY", "OKAY"]]

对于节数,请使用:
override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return data.count
}

然后,要指定每个节中的行数,请使用:
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return data[section].count
}

然后设置您的单元格:
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
cell.textLabel?.text = data[indexPath.section][indexPath.row]

}

关于ios - Swift-将数组分配给collectionviewcell中的tableview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60003341/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com