This commit is contained in:
2026-01-15 18:16:56 +08:00
parent da62d4f411
commit 32c4138ae0
29 changed files with 1523 additions and 95 deletions

View File

@@ -10,10 +10,13 @@
#import "KBPanModalView.h"
#import "KBGuideVC.h" //
#import "WMDragView.h"
#import "KBMyVM.h"
#import "KBUserSessionManager.h"
@interface HomeMainVC ()
@property (nonatomic, strong) HomeHeadView *headView;
@property (nonatomic, strong) KBPanModalView *simplePanModalView;
@property (nonatomic, strong) KBMyVM *viewModel;
///
@property (nonatomic, strong) WMDragView *keyPermissButton;
@@ -65,6 +68,17 @@
// NSLog(@"[MainApp] 写入完成");
}
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
if (![KBUserSessionManager shared].isLoggedIn) {
return;
}
if (!self.viewModel) {
self.viewModel = [[KBMyVM alloc] init];
}
[self.viewModel fetchUserDetailWithCompletion:nil];
}
// viewDidLoad push
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];

View File

@@ -1,16 +0,0 @@
//
// HomeVC.h
// keyBoard
//
// Created by Mac on 2025/10/29.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface HomeVC : UIViewController
@end
NS_ASSUME_NONNULL_END

View File

@@ -1,61 +0,0 @@
//
// HomeVC.m
// keyBoard
//
// Created by Mac on 2025/10/29.
//
#import "HomeVC.h"
#import "HomeHeadView.h"
#import "HomeSheetVC.h"
@interface HomeVC ()
@property (nonatomic, strong) HomeHeadView *headView;
@end
@implementation HomeVC
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor yellowColor];
CGFloat topV = (500);
[self.view addSubview:self.headView];
[self setupMas:topV];
// sheetVC
HomeSheetVC *vc = [[HomeSheetVC alloc] init];
// 使 true
// if (KB_DEVICE_HAS_NOTCH) {
// vc.minHeight = KB_SCREEN_HEIGHT - topV - 34;
// }else{
vc.minHeight = KB_SCREEN_HEIGHT - topV;
//
// }
vc.topInset = 100;
[self presentPanModal:vc];
}
- (void)setupMas:(CGFloat)headViewTopV{
[self.headView mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.right.equalTo(self.view);
make.top.equalTo(self.view);
make.height.mas_equalTo(headViewTopV);
}];
}
- (void)viewWillAppear:(BOOL)animated{
[super viewWillAppear:animated];
}
#pragma mark - lazy
- (HomeHeadView *)headView{
if (!_headView) {
_headView = [[HomeHeadView alloc] init];
}
return _headView;
}
@end