作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
每当用户点击按钮时,我想在部分中的项目数上加 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
}
最佳答案
在使用 UITableView
和 UICollectionView
时,通常会有一个数组。以及要填充对象的数组。在您的情况下,对象的类型为 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/
我是一名优秀的程序员,十分优秀!