Selaa lähdekoodia

服务协议不同意不能使用app

harry 3 vuotta sitten
vanhempi
commit
8dfd35f8cd

BIN
Introduce.xcodeproj/project.xcworkspace/xcuserdata/harry.xcuserdatad/UserInterfaceState.xcuserstate


+ 7 - 3
Introduce/Record/INRecorderController.swift

@@ -187,9 +187,13 @@ class INRecorderController: BFBaseViewController {
     }
 
     @objc func addVideo() {
-        let vc = INPhotoVideosController()
-        vc.hidesBottomBarWhenPushed = true
-        navigationController?.pushViewController(vc, animated: true)
+        if (getUserDefaults(key: "welcomeViewisshow") == nil) {
+            welcomeView.isHidden = false
+        }else{
+            let vc = INPhotoVideosController()
+            vc.hidesBottomBarWhenPushed = true
+            navigationController?.pushViewController(vc, animated: true)
+        }
     }
 }
 

+ 2 - 2
Introduce/Record/INVideoExportController.swift

@@ -23,7 +23,7 @@ class INVideoExportController: BFBaseViewController {
     var saveOnlyUlr = URL(fileURLWithPath: "aaa")
     var isExporting = false
 
-    // 播放进度
+    // 预览播放进度
     lazy var progreddL: UILabel = {
         let l = UILabel(frame: CGRect(x: 0, y: cDevice_iPhoneStatusBarHei, width: cScreenWidth, height: 14))
         l.textAlignment = .center
@@ -231,7 +231,7 @@ class INVideoExportController: BFBaseViewController {
 
         progressL.snp.makeConstraints { make in
             make.center.width.equalToSuperview()
-            make.height.equalTo(20)
+            make.height.equalTo(28)
         }
 
         progreddL.snp.makeConstraints { make in