CustomCategoryCell.h 684 B

123456789101112131415161718192021222324
  1. //
  2. // CustomCategoryCell.h
  3. // BuguLive
  4. //
  5. // Created by voidcat on 2024/7/25.
  6. // Copyright © 2024 xfg. All rights reserved.
  7. //
  8. #import "JXCategorySubTitleCell.h"
  9. #import <JXCategoryViewExt/JXCategorySubTitleView.h>
  10. #import <JXCategoryViewExt/JXCategoryView.h>
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface CustomCategoryCell : JXCategoryTitleCell
  13. @property (nonatomic, strong) UILabel *subTitleLabel;
  14. @property (nonatomic, strong) NSLayoutConstraint *subTitleLabelCenterX;
  15. @property (nonatomic, strong) UIView *backgroundView1;
  16. @property (nonatomic, strong) UIColor *selectedBackgroundColor;
  17. @property (nonatomic, strong) UIColor *unselectedBackgroundColor;
  18. @end
  19. NS_ASSUME_NONNULL_END