22 lines
424 B
Swift
22 lines
424 B
Swift
//
|
|
// BRCollectionViewCell.swift
|
|
// BeeReel
|
|
//
|
|
// Created by 长沙鸿瑶 on 2025/6/24.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class BRCollectionViewCell: UICollectionViewCell {
|
|
|
|
override init(frame: CGRect) {
|
|
super.init(frame: frame)
|
|
self.layer.rasterizationScale = UIScreen.main.scale
|
|
self.layer.shouldRasterize = true
|
|
}
|
|
|
|
required init?(coder: NSCoder) {
|
|
super.init(coder: coder)
|
|
}
|
|
}
|