|
@@ -1444,15 +1444,15 @@ public class BFRecordScreenController: BFBaseViewController {
|
|
|
|
|
|
|
|
|
func showCutView(_ model:PQVoiceModel) {
|
|
|
- let v = UIView(frame: CGRect(x: 0, y: cScreenHeigth, width: cScreenWidth, height: 100))
|
|
|
- v.backgroundColor = .green
|
|
|
+ let v = BFMusicCutView(frame: CGRect(x: 0, y: 0, width: cScreenWidth, height: cScreenHeigth))
|
|
|
view.addSubview(v)
|
|
|
- DispatchQueue.main.async {
|
|
|
- UIView.animate(withDuration: 0.2) {
|
|
|
-
|
|
|
- v.frame = CGRect(x: 0, y: cScreenHeigth - 100, width: cScreenWidth, height: 100)
|
|
|
- }
|
|
|
- }
|
|
|
+ v.bgmData = model
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
}
|
|
|
|
|
|
override public func backBtnClick() {
|