Pārlūkot izejas kodu

fix: 修复验收问题

陈文艺 2 mēneši atpakaļ
vecāks
revīzija
89de94ae03

+ 3 - 3
Lanu.xcodeproj/project.pbxproj

@@ -531,7 +531,7 @@
 				CLANG_ENABLE_MODULES = YES;
 				CODE_SIGN_ENTITLEMENTS = Lanu/Lanu.entitlements;
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 22;
+				CURRENT_PROJECT_VERSION = 23;
 				DEVELOPMENT_TEAM = 5H8D98R72W;
 				ENABLE_USER_SCRIPT_SANDBOXING = NO;
 				GENERATE_INFOPLIST_FILE = YES;
@@ -575,12 +575,12 @@
 				CLANG_ENABLE_MODULES = YES;
 				CODE_SIGN_ENTITLEMENTS = Lanu/Lanu.entitlements;
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 22;
+				CURRENT_PROJECT_VERSION = 23;
 				DEVELOPMENT_TEAM = 5H8D98R72W;
 				ENABLE_USER_SCRIPT_SANDBOXING = NO;
 				GENERATE_INFOPLIST_FILE = YES;
 				INFOPLIST_FILE = Lanu/Info.plist;
-				INFOPLIST_KEY_CFBundleDisplayName = "Gami(Debug)";
+				INFOPLIST_KEY_CFBundleDisplayName = Gami;
 				INFOPLIST_KEY_NSAccessoryTrackingUsageDescription = "";
 				INFOPLIST_KEY_NSCameraUsageDescription = "need permission";
 				INFOPLIST_KEY_NSLocationWhenInUseUsageDescription = 12;

+ 1 - 1
Lanu/Views/IM/Chat/GameMate/LNIMChatGameMateSkillCell.swift

@@ -144,7 +144,7 @@ extension LNIMChatGameMateSkillCell {
         coin.snp.makeConstraints { make in
             make.leading.equalToSuperview()
             make.bottom.equalToSuperview()
-            make.top.equalTo(gameNameLabel.snp.bottom).offset(5)
+            make.top.equalTo(gameNameLabel.snp.bottom).offset(1)
             make.width.height.equalTo(18)
         }
         

+ 1 - 0
Lanu/Views/Profile/Profile/LNProfileStaringPanel.swift

@@ -78,6 +78,7 @@ extension LNProfileStaringPanel {
         confirmButton.setTitle(.init(key: "A00183"), for: .normal)
         confirmButton.backgroundColor = .text_2
         confirmButton.setTitleColor(.text_1, for: .normal)
+        confirmButton.titleLabel?.font = .heading_h3
         confirmButton.layer.cornerRadius = 23.5
         confirmButton.clipsToBounds = true
         confirmButton.addAction(UIAction(handler: { [weak self] _ in

+ 3 - 0
Lanu/Views/Profile/Relation/LNUserRelationItemCell.swift

@@ -67,6 +67,7 @@ extension LNUserRelationItemCell {
         if curItem?.relateion.contains(.followed) == true {
             if curItem?.relateion.contains(.fans) == true {
                 followLabel.isHidden = true
+                followLabel.text = nil
                 followButton.setBackgroundImage(nil, for: .normal)
                 let config = UIImage.SymbolConfiguration(pointSize: 12)
                 followButton.setImage(.init(systemName: "arrow.left.arrow.right", withConfiguration: config)?.withRenderingMode(.alwaysTemplate), for: .normal)
@@ -82,6 +83,7 @@ extension LNUserRelationItemCell {
         } else {
             if curItem?.relateion.contains(.fans) == true {
                 followLabel.isHidden = true
+                followLabel.text = nil
                 followButton.setBackgroundImage(.primary_7, for: .normal)
                 let config = UIImage.SymbolConfiguration(pointSize: 12)
                 followButton.setImage(.init(systemName: "arrow.left.arrow.right", withConfiguration: config)?.withRenderingMode(.alwaysTemplate), for: .normal)
@@ -124,6 +126,7 @@ extension LNUserRelationItemCell {
             make.centerY.equalToSuperview()
             make.trailing.equalToSuperview().offset(-16)
             make.height.equalTo(22)
+            make.width.greaterThanOrEqualTo(48)
         }
         
         followLabel.font = .body_xs