// // BaseCollectionViewCell.swift // JiaPeiManage // // Created by Ning.ge on 2023/8/30. // import UIKit import RxSwift class BaseCollectionViewCell: UICollectionViewCell { var disposeBag = DisposeBag() // MARK: Initializing override init(frame: CGRect) { super.init(frame: frame) self.backgroundColor = UIColor.db_white initialize() } required convenience init?(coder aDecoder: NSCoder) { self.init(frame: .zero) } func initialize() { } }