ALCalendarConfig.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. //
  2. // ALCalendarConfig.h
  3. // ALCalendarPickerDemo
  4. //
  5. // Created by Arclin on 2017/6/17.
  6. // Copyright © 2017年 arclin. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ALCalendarConfig : NSObject
  10. /** 当前日期优先 */
  11. @property (nonatomic, assign) BOOL hightlightPriority;
  12. /**** 今天日期 *****/
  13. /** 文字颜色 */
  14. @property (nonatomic, strong) UIColor *tod_textColor;
  15. /** 背景颜色 */
  16. @property (nonatomic, strong) UIColor *tod_backgroundColor;
  17. /** 圆角 */
  18. @property (nonatomic, strong) NSNumber *tod_backgroundCornerRadius;
  19. /** Two高亮日期 */
  20. @property (nonatomic, strong) NSArray<NSString *> *TwoheightlightDates;
  21. /** 文字颜色 */
  22. @property (nonatomic, strong) UIColor *h2_textColor;
  23. /** 背景颜色 */
  24. @property (nonatomic, strong) UIColor *h2_backgroundColor;
  25. /** 圆角 */
  26. @property (nonatomic, strong) NSNumber *h2_backgroundCornerRadius;
  27. /**** 高亮日期 ****/
  28. /** 高亮日期 */
  29. @property (nonatomic, strong) NSArray<NSString *> *heightlightDates;
  30. /** 选择日期 */
  31. @property (nonatomic, strong) NSArray<NSString *> *selectedDates;
  32. /** 文字颜色 */
  33. @property (nonatomic, strong) UIColor *hl_textColor;
  34. /** 背景颜色 */
  35. @property (nonatomic, strong) UIColor *hl_backgroundColor;
  36. /** 圆角 */
  37. @property (nonatomic, strong) NSNumber *hl_backgroundCornerRadius;
  38. /**** 选中日期 ****/
  39. /** 文字颜色 */
  40. @property (nonatomic, strong) UIColor *sel_textColor;
  41. /** 背景颜色 */
  42. @property (nonatomic, strong) UIColor *sel_backgroundColor;
  43. /** 圆角 */
  44. @property (nonatomic, strong) NSNumber *sel_backgroundCornerRadius;
  45. @end