修改三方库 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

@@ -42,6 +42,13 @@
return self;
}
- (HWBackgroundConfig *)backgroundConfig {
// return [HWBackgroundConfig configWithBehavior:HWBackgroundBehaviorSystemVisualEffect];
HWBackgroundConfig *config = [HWBackgroundConfig configWithBehavior:HWBackgroundBehaviorDefault];
config.backgroundAlpha = 0;
return config;
}
- (UIView<HWPanModalIndicatorProtocol> *)customIndicatorView {
if (!_indicator) _indicator = [KBDirectionIndicatorView new];
return _indicator;