修改三方库 JXCategoryIndicatorCell self.contentView.layer.cornerRadius = 4;

This commit is contained in:
2025-11-07 00:12:28 +08:00
parent 0fa3d10284
commit f0542c11c8
7 changed files with 55 additions and 12 deletions

View File

@@ -20,10 +20,8 @@
- (void)viewDidLoad {
[super viewDidLoad];
// self.view.backgroundColor = [UIColor yellowColor];
UIImage *bgImage = [UIImage kb_gradientImageWithColors:@[[UIColor colorWithHex:0xE8FFF1], [UIColor colorWithHex:0xD4FDFF]] size:CGSizeMake(KB_SCREEN_WIDTH, KB_SCREEN_HEIGHT) direction:KBGradientDirectionTopToBottom];
UIImageView *bgImageView = [[UIImageView alloc] init];
bgImageView.image = bgImage;
bgImageView.image = [UIImage imageNamed:@"home_bg_image"];
[self.view addSubview:bgImageView];
[bgImageView mas_makeConstraints:^(MASConstraintMaker *make) {
make.edges.equalTo(self.view);
@@ -43,9 +41,6 @@
}
self.simplePanModalView.topInset = 100;
[self.simplePanModalView presentInView:self.view];
HWBackgroundConfig *config = [HWBackgroundConfig configWithBehavior:HWBackgroundBehaviorDefault];
config.backgroundAlpha = 0;
[self.simplePanModalView.hw_dimmedView reloadConfig:config];
}
- (void)setupMas:(CGFloat)headViewTopV{