解决方法
在您的单元类中,将其定义为全局.
class YourCollectionViewCell: UICollectionViewCell { var titleLabel:UILabel = { let label = UILabel(frame: CGRect(x:100,y: 30,width: UIScreen.main.bounds.width,height: 40)) label.textAlignment = .left label.lineBreakMode = .byWordWrapping label.numberOfLines = 0 return label }() override init(frame: CGRect) { super.init(frame: frame) self.addSubview(self.titleLabel) } }