12345678910111213141516171819 |
- //
- // BFVideoCoverViewCell.swift
- // BFRecordScreenKit
- //
- // Created by SanW on 2021/12/15.
- // Copyright © 2021 BytesFlow. All rights reserved.
- //
- import UIKit
- import GPUImage
- open class BFVideoCoverViewCell: BFImageCoverViewCell {
- @objc public class func gpuVideoViewCell(collectionView: UICollectionView, indexPath: IndexPath) -> BFVideoCoverViewCell {
- let cell: BFVideoCoverViewCell = collectionView.dequeueReusableCell(withReuseIdentifier: String(describing: BFVideoCoverViewCell.self), for: indexPath) as! BFVideoCoverViewCell
- return cell
- }
- }
|