|
@@ -68,6 +68,16 @@ class INRecorderController: BFBaseViewController {
|
|
|
return l
|
|
|
}()
|
|
|
|
|
|
+ //显示编译时间
|
|
|
+ lazy var buildTimeLabel:UILabel = {
|
|
|
+ let l = UILabel.init(frame: CGRect.init(x: 0, y: 120, width: cScreenWidth, height: 20))
|
|
|
+ l.text = "打包时间:" + PQENVUtil.shared.ENBuildTime
|
|
|
+ l.textColor = .white
|
|
|
+ l.font = UIFont.boldSystemFont(ofSize: 18)
|
|
|
+ l.textAlignment = .left
|
|
|
+ return l
|
|
|
+ }()
|
|
|
+
|
|
|
lazy var protocolLab: TYAttributedLabel = {
|
|
|
let protocolLab = TYAttributedLabel()
|
|
|
protocolLab.highlightedLinkBackgroundColor = UIColor.clear
|
|
@@ -160,6 +170,10 @@ class INRecorderController: BFBaseViewController {
|
|
|
view.backgroundColor = .black
|
|
|
view.addSubview(bgView)
|
|
|
|
|
|
+ if(PQENVUtil.shared.channel == "Development"){
|
|
|
+ view.addSubview(buildTimeLabel)
|
|
|
+ }
|
|
|
+
|
|
|
view.addSubview(centerView)
|
|
|
view.addSubview(bottomView)
|
|
|
centerView.snp.makeConstraints { make in
|
|
@@ -174,6 +188,7 @@ class INRecorderController: BFBaseViewController {
|
|
|
make.left.equalToSuperview().offset(5)
|
|
|
make.width.height.equalTo(130)
|
|
|
}
|
|
|
+
|
|
|
let l = UILabel()
|
|
|
l.text = "选择视频/图片\n开始讲解"
|
|
|
l.textColor = UIColor.hexColor(hexadecimal: "#8C9399")
|