1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| //
| // VoiceView.swift
| // XQMuse
| //
| // Created by 无故事王国 on 2024/8/19.
| //
|
| import UIKit
| import JQTools
|
| class VideoView: UIView {
|
| override init(frame: CGRect) {
| super.init(frame: frame)
| backgroundColor = .jq_randomColor
| }
|
| required init?(coder: NSCoder) {
| fatalError("init(coder:) has not been implemented")
| }
|
| }
|
|