BFVideoCoverViewCell.swift 580 B

12345678910111213141516171819
  1. //
  2. // BFVideoCoverViewCell.swift
  3. // BFRecordScreenKit
  4. //
  5. // Created by SanW on 2021/12/15.
  6. // Copyright © 2021 BytesFlow. All rights reserved.
  7. //
  8. import UIKit
  9. import GPUImage
  10. open class BFVideoCoverViewCell: BFImageCoverViewCell {
  11. @objc public class func gpuVideoViewCell(collectionView: UICollectionView, indexPath: IndexPath) -> BFVideoCoverViewCell {
  12. let cell: BFVideoCoverViewCell = collectionView.dequeueReusableCell(withReuseIdentifier: String(describing: BFVideoCoverViewCell.self), for: indexPath) as! BFVideoCoverViewCell
  13. return cell
  14. }
  15. }