Forráskód Böngészése

修改提示信息背景色

jsonwang 3 éve
szülő
commit
a97811d9c5

+ 4 - 2
BFRecordScreenKit/Classes/RecordScreen/Controller/BFRecordScreenController.swift

@@ -522,18 +522,20 @@ public class BFRecordScreenController: BFBaseViewController {
     // debug
     lazy var neoNuiDebugLabel: UILabel = {
         let neoNuiDebugLabel = UILabel(frame: CGRect(x: 0, y: 100, width: 300, height: 24))
-        neoNuiDebugLabel.backgroundColor = .black
+        neoNuiDebugLabel.backgroundColor = .orange
         neoNuiDebugLabel.textColor = .white
         neoNuiDebugLabel.textAlignment = .left
+        neoNuiDebugLabel.text = "调试信息"
         return neoNuiDebugLabel
 
     }()
 
     lazy var audioQueueRecoderLabel: UILabel = {
         let audioQueueRecoderLabel = UILabel(frame: CGRect(x: 0, y: 125, width: 300, height: 24))
-        audioQueueRecoderLabel.backgroundColor = .black
+        audioQueueRecoderLabel.backgroundColor = .orange
         audioQueueRecoderLabel.textColor = .white
         audioQueueRecoderLabel.textAlignment = .left
+        audioQueueRecoderLabel.text = "调试信息"
         return audioQueueRecoderLabel
 
     }()