|
@@ -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,11 @@ 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
|