This commit is contained in:
启星
2025-11-06 13:04:04 +08:00
parent 4aa2fac912
commit 406c481ba4
105 changed files with 1449 additions and 251 deletions

View File

@@ -19,9 +19,13 @@
[super viewDidLoad];
// Do any additional setup after loading the view.
[self.view insertSubview:self.bgImageView atIndex:0];
[self updateBgImage:QXConfig.backgroundImage];
[self initSubViews];
if (self.isNoChangeBgImage) {
///
}else{
[self updateBgImage:QXConfig.backgroundImage];
}
[self setNavgationItems];
[self initSubViews];
[self getData];
self.page = 1;
}
@@ -41,6 +45,11 @@
- (void)getData{
}
-(void)setNavigationTintColor:(UIColor *)navigationTintColor{
_navigationTintColor = navigationTintColor;
[self.backBtn setImage:[[UIImage imageNamed:@"back"] imageByTintColor:navigationTintColor] forState:(UIControlStateNormal)];
}
-(void)setNavgationItems{
UIButton*backBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 44, 44)];
[backBtn setImage:[UIImage imageNamed:@"back"] forState:(UIControlStateNormal)];