Ver código fonte

Merge branch 'master' of https://git.yishihui.com/iOS/BFRecordScreenKit

* 'master' of https://git.yishihui.com/iOS/BFRecordScreenKit:
  修改提示信息背景色
harry 3 anos atrás
pai
commit
2f0036bc90

+ 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
 
     }()