修正 UI 反馈

This commit is contained in:
eggmanQQQ
2024-07-12 15:53:11 +08:00
parent e803011bef
commit bce103c034
15 changed files with 84 additions and 58 deletions

View File

@@ -336,10 +336,10 @@ typedef enum : NSUInteger {
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
switch (section) {
case GameMate:
return self.gameInfos.count > 0 ? 30 : 0;
return self.gameInfos.count > 0 ? 40 : 0;
break;
case Album:
return 30;
return 40;
break;
case Medal:
return self.medalInfo.medalCount == 0 ? 0 : 30;
@@ -351,7 +351,7 @@ typedef enum : NSUInteger {
return 50;
break;
default:
return 30;
return 40;
break;
}
}