|
@@ -443,7 +443,7 @@ class PQStuckPointPublicController: PQBaseViewController {
|
|
|
finishedBtn.setTitle("重试", for: .normal)
|
|
|
finishedBtn.setTitleColor(UIColor.white, for: .normal)
|
|
|
finishedBtn.titleLabel?.font = UIFont.systemFont(ofSize: 15, weight: .medium)
|
|
|
- finishedBtn.backgroundColor = UIColor.green
|
|
|
+ finishedBtn.backgroundColor = UIColor.hexColor(hexadecimal: PQBFConfig.shared.styleColor.rawValue)
|
|
|
finishedBtn.tag = 97
|
|
|
finishedBtn.isHidden = true
|
|
|
finishedBtn.addCorner(corner: 5)
|
|
@@ -952,7 +952,7 @@ extension PQStuckPointPublicController {
|
|
|
|
|
|
if(saveMovieLocalURL == nil || isTestSaveFailed){
|
|
|
BFLog(message: "保存相册的视频导出地址无效!!!")
|
|
|
- saveVideoTipsLabel.text = "视频已经保存失败"
|
|
|
+ saveVideoTipsLabel.text = "视频保存失败"
|
|
|
saveRetryBtn.isHidden = false
|
|
|
saveVideoTipsBgView.isHidden = false
|
|
|
// DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 0.8) { [weak self] in
|
|
@@ -969,14 +969,14 @@ extension PQStuckPointPublicController {
|
|
|
DispatchQueue.main.async { [weak self] in
|
|
|
if self?.view != nil {
|
|
|
if isFinished {
|
|
|
- self?.saveVideoTipsLabel.text = "视频已经保存到相册"
|
|
|
+ self?.saveVideoTipsLabel.text = "视频已保存到相册"
|
|
|
self?.saveRetryBtn.isHidden = true
|
|
|
DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 0.8) { [weak self] in
|
|
|
self?.saveVideoTipsBgView.isHidden = true
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
- self?.saveVideoTipsLabel.text = "视频已经保存失败"
|
|
|
+ self?.saveVideoTipsLabel.text = "视频保存失败"
|
|
|
self?.saveRetryBtn.isHidden = false
|
|
|
// DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 0.8) { [weak self] in
|
|
|
// self?.saveVideoTipsBgView.isHidden = true
|