CalenderWeekView.h 371 B

123456789101112131415161718192021
  1. //
  2. // CalenderWeekView.h
  3. // YZCCalender
  4. //
  5. // Created by Jason on 2018/1/17.
  6. // Copyright © 2018年 jason. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CalenderWeekView : UIView
  10. //星期
  11. @property (nonatomic, copy) NSArray *dataSource;
  12. @property (nonatomic, assign) BOOL showLine;
  13. @property (nonatomic, strong) UIColor *weekBottomLineColor;
  14. @end