2 次代码提交 b3dbd6d7d2 ... 254e276108

作者 SHA1 备注 提交日期
  jsonwang 254e276108 修改提示文字 3 年之前
  jsonwang 08da4d9ed2 修改选中字号 加粗 3 年之前

+ 1 - 1
BFRecordScreenKit/Classes/RecordScreen/Controller/BFMusicSearchController.swift

@@ -201,7 +201,7 @@ extension BFMusicSearchController : UITableViewDelegate, UITableViewDataSource {
                 var bgmList = [PQVoiceModel]()
                 if response is NSNull || response == nil {
                     DispatchQueue.main.async {
-                        cShowHUB(superView: nil, msg: "搜索失败,请重试!")
+                        cShowHUB(superView: nil, msg: "网络连接失败,请检查网络后重试")
                     }
                     return
                 }

+ 2 - 0
BFRecordScreenKit/Classes/RecordScreen/View/Cell/BFMuicInfoCell.swift

@@ -125,9 +125,11 @@ class BFMuicInfoCell: UITableViewCell {
         if selected{
             titleL.textColor = UIColor.hexColor(hexadecimal: "#389AFF")
             showFunctionBtn()
+            titleL.font = UIFont.systemFont(ofSize: 16, weight: .medium)
         }else {
             titleL.textColor = UIColor.white
             hiddenFunctionBtn()
+            titleL.font = UIFont.systemFont(ofSize: 16, weight: .regular)
         }
     }