gpt4 book ai didi

ios - Xcode Swift Collection View : How can I add the number of items in section whenever the button is tapped?

转载 作者:行者123 更新时间:2023-11-28 08:01:46 26 4
gpt4 key购买 nike

每当用户点击按钮时,我想在部分中的项目数上加 1,但我不知道应该如何在代码中编写它。

@IBAction func myButton(_ sender: Any) {

let numberOfItemsInSection + 1 //What's the correct way to write this line of code?
}


func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return 0 // +1 whenever the button gets tapped
}

最佳答案

在使用 UITableViewUICollectionView 时,通常会有一个数组。以及要填充对象的数组。在您的情况下,对象的类型为 Item

var items = [Item]()

@IBAction func myButton(_ sender: Any) {
items.append(Item())
collectionView.reloadData()
}

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return items.count
}

关于ios - Xcode Swift Collection View : How can I add the number of items in section whenever the button is tapped?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46460162/

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