CGXVerticalMenuIndicatorBackgroundView.h 872 B

12345678910111213141516171819202122
  1. //
  2. // CGXVerticalMenuIndicatorBackgroundView.h
  3. // Created by CGX on 2018/05/01.
  4. // Copyright © 2019 CGX. All rights reserved.
  5. //
  6. #import "CGXVerticalMenuIndicatorComponentView.h"
  7. @interface CGXVerticalMenuIndicatorBackgroundView : CGXVerticalMenuIndicatorComponentView
  8. //背景指示器的宽度。默认CGXCategoryViewAutomaticDimension(与cellWidth相等)
  9. @property (nonatomic, assign) CGFloat backgroundViewWidth;
  10. //背景指示器的高度。默认CGXCategoryViewAutomaticDimension(与cell高度相等)
  11. @property (nonatomic, assign) CGFloat backgroundViewHeight;
  12. //背景指示器的圆角值。默认CGXCategoryViewAutomaticDimension(即backgroundViewHeight/2)
  13. @property (nonatomic, assign) CGFloat backgroundViewCornerRadius;
  14. //背景指示器的颜色。默认为[UIColor redColor]
  15. @property (nonatomic, strong) UIColor *backgroundViewColor;
  16. @end