This commit is contained in:
2025-11-06 15:16:03 +08:00
parent a1db745b6c
commit 41aec6b89e
5 changed files with 93 additions and 3 deletions

View File

@@ -25,10 +25,13 @@
[self setupMas:topV];
// sheetVC
HomeSheetVC *vc = [[HomeSheetVC alloc] init];
if (<#condition#>) {
<#statements#>
// 使 true
if (KB_DEVICE_HAS_NOTCH) {
vc.minHeight = KB_SCREEN_HEIGHT - topV - 34;
}else{
vc.minHeight = KB_SCREEN_HEIGHT - topV;
}
vc.minHeight = KB_SCREEN_HEIGHT - topV;
vc.topInset = 100;
[self presentPanModal:vc];
}