mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
24 lines
492 B
Swift
24 lines
492 B
Swift
import AVFoundation
|
|
import Foundation
|
|
import UIKit
|
|
|
|
final class PlayerLayerView: UIView {
|
|
var playerLayer = AVPlayerLayer()
|
|
|
|
override init(frame: CGRect) {
|
|
super.init(frame: frame)
|
|
|
|
layer.addSublayer(playerLayer)
|
|
}
|
|
|
|
@available(*, unavailable)
|
|
required init?(coder _: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
|
|
override func layoutSubviews() {
|
|
super.layoutSubviews()
|
|
playerLayer.frame = bounds
|
|
}
|
|
}
|