Преглед на файлове

图片模式时,封面图使用uiimageview渲染

胡志强 преди 3 години
родител
ревизия
1bdb2041da
променени са 1 файла, в които са добавени 3 реда и са изтрити 1 реда
  1. 3 1
      BFRecordScreenKit/Classes/RecordScreen/View/Cell/BFImageCoverViewCell.swift

+ 3 - 1
BFRecordScreenKit/Classes/RecordScreen/View/Cell/BFImageCoverViewCell.swift

@@ -55,7 +55,9 @@ open class BFImageCoverViewCell: UICollectionViewCell {
         super.init(frame: frame)
         contentView.addSubview(playView)
         contentView.addSubview(playBtn)
-        contentView.addSubview(playImageView)
+        if(recordItem?.mediaType == .Image){
+            contentView.addSubview(playImageView)            
+        }
     }
 
     public required init?(coder _: NSCoder) {