This commit is contained in:
2025-11-06 14:59:00 +08:00
parent 15fc9621cd
commit a1db745b6c
9 changed files with 517 additions and 24 deletions

View File

@@ -18,14 +18,17 @@
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor whiteColor];
CGFloat topV = KBFit(500);
self.view.backgroundColor = [UIColor yellowColor];
CGFloat topV = (500);
[self.view addSubview:self.headView];
[self setupMas:topV];
// sheetVC
HomeSheetVC *vc = [[HomeSheetVC alloc] init];
vc.minHeight = KB_SCREEN_HEIGHT - topV - 30;
if (<#condition#>) {
<#statements#>
}
vc.minHeight = KB_SCREEN_HEIGHT - topV;
vc.topInset = 100;
[self presentPanModal:vc];
}