```swift override var backgroundColor: UIColor? { didSet { collectionView.backgroundColor = backgroundColor } } ``` 最好在`UICollectionView`初始化的时候,给个默认背景色,这样不会是黑色: ```swift self.collectionView.backgroundColor = .white ```