我有一个带有UICollectionView的UIViewController。 A UICollectionView的每个单元格都是B UICollectionView。
UICollectionView具有垂直滚动。 B UICollectionView具有水平滚动。
由于某些原因,B UICollectionView无法滚动。可能是什么原因?以及如何解决?
这是我注册内部单元格的方式(也许我做错了):
class AUICollectionViewCell: UICollectionViewCell {
@IBOutlet var collectionView: UICollectionView! //{ didSet { collectionView?.register(UINib(nibName: "BUICollectionViewCell", bundle: nil), forCellWithReuseIdentifier: "BUICollectionViewCell") } } (this didn't work either)
override func awakeFromNib() {
super.awakeFromNib()
collectionView.register(UINib(nibName: "BUICollectionViewCell", bundle: nil), forCellWithReuseIdentifier: "BUICollectionViewCell")
}
...
}