我正在从UICollectionView中的API渲染数据,当我向下滚动集合视图时,我正面临着该错误。
validateTextureDimensions:1078:断言失败'MTLTextureDescriptor的高度(8256)大于允许的最大大小8192。'
let cellWidth = floor(screenSize.width) - 10
let cellHeight = cellWidth / 1.2
let layout = deliCollectionView!.collectionViewLayout as! UICollectionViewFlowLayout
layout.itemSize = CGSize(width: cellWidth, height: cellHeight)
self.deliCollectionView?.contentInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)