//
|
// StoreGoodsVideoView.swift
|
// HotToWatch
|
//
|
// Created by junzong on 2022/4/21.
|
// Copyright © 2022 cyyc. All rights reserved.
|
//
|
|
import UIKit
|
|
class StoreGoodsVideoView: HQIndexBannerSubview, NIBLoadable {
|
|
override func setSubviewsWithSuperViewBounds(_ superViewBounds: CGRect) {
|
AVPlayerSingleManager.shared.avPlayerVC.view.frame = superViewBounds
|
}
|
|
func setupData(_ urlStr: String) {
|
AVPlayerSingleManager.shared.show(self, urlStr: urlStr)
|
AVPlayerSingleManager.shared.play()
|
}
|
|
}
|