- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在一个基本的 ViewController 中实现一个 UICollectionView (collectionView)我的 Collection View 必须像 numbersofItemInSection 代码中那样检索 5 个单元格。显示 CollectionView 并调用 numbersofItemInSection 函数,但未调用 cellForItemAt 函数,因此 Collection View 为空。
import UIKit
private let reuseIdentifier = "Cell"
class TestViewController: UIViewController, UICollectionViewDataSource, UICollectionViewDelegate{
lazy var collectionView : UICollectionView = {
let layout = UICollectionViewFlowLayout()
let cv = UICollectionView(frame: .zero, collectionViewLayout: layout)
cv.translatesAutoresizingMaskIntoConstraints = false
cv.delegate = self
cv.dataSource = self
return cv
}()
override func viewDidLoad() {
super.viewDidLoad()
// Register cell classes
self.collectionView.register(UICollectionViewCell.self, forCellWithReuseIdentifier: reuseIdentifier)
collectionView.backgroundColor = .white
navigationItem.title = "test"
setupViews()
}
func setupViews(){
view.addSubview(collectionView)
collectionView.leftAnchor.constraint(equalTo: view.leftAnchor).isActive = true
collectionView.rightAnchor.constraint(equalTo: view.rightAnchor).isActive = true
collectionView.heightAnchor.constraint(equalToConstant: 60).isActive = true
collectionView.topAnchor.constraint(equalTo: topLayoutGuide.bottomAnchor).isActive = true
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return 5
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath)
// Configure the cell
cell.backgroundColor = .red
return cell
}
}
最佳答案
是你的collectionView的高度或者collectionView的frame问题,那么你需要给collectionView设置合适的高度。
或
试试这个
override func viewDidLoad() {
super.viewDidLoad()
navigationItem.title = "test"
setupViews()
collectionView.backgroundColor = .white
self.collectionView.register(UICollectionViewCell.self, forCellWithReuseIdentifier: reuseIdentifier)
// remove this line if you not use xib
}
关于ios - 未调用 UICollectionView cellForItem,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43912437/
因此 UICollectionViews 公开了方法 cellForItem(at:) ,它允许我们访问 Collection View 中包含的单元格。 我们还知道 collectionView 使
Xcode 8.2.1将 Swift 2.2 迁移到 Swift 3 之后 UICollectionView 的 cellForItem 未正确调用,但在迁移工作正常之前 我有带水平 UICollec
我在函数调用中使用 collectionView.cellForItem: func collectionView(_ collectionView: UICollectionView, didSel
我正在一个基本的 ViewController 中实现一个 UICollectionView (collectionView)我的 Collection View 必须像 numbersofItemI
我在 Storyboard 中创建了一个 collectionView,然后将 Delegate 和 DataSource 方法放入管理该屏幕的 ViewController 的扩展中。 collec
我正在使用 Swift4 和 Xcode9。 我使用下面的委托(delegate)方法创建我的 collectionView 单元格; func collectionView(_ collection
我有两个数组,一个包含字符串,一个包含自定义对象。 我分别创建了两个不同的单元格。我已将两个数组的内容添加到第三个通用数组 Any 中。我在 cellForItem 中使用第三个数组 (combine
如果我尝试通过 cellForItem 获取我的项目,我的 UICollectionViewItem 中将得到 nil。但数据显示在我的 UICollectionView 中。我正在通过远程在我的 U
我读过让我的 collectionViewController 成为 UICollectionViewDelegateFlowLayout 的委托(delegate),我已经正确注册了我的单元格, c
在 Xcode 中,我在 userCell 中创建了一个 var“userImage” - UICollectionViewCell 的子类。 import UIKit class userCell:
我是一名优秀的程序员,十分优秀!