// // EBCalendarView.h // EBCalendarViewDemo // // Created by HoYo on 2018/4/25. // Copyright © 2018年 HoYo. All rights reserved. // #import @protocol EBCalendarViewDelegate; @interface EBCalendarView : UIView // 默认-1不做限制 @property (nonatomic, assign) NSInteger maxLastMonths; // 默认-1不做限制 @property (nonatomic, assign) NSInteger maxNextMonths; /// <#arguments#> @property (nonatomic ,strong) NSMutableArray *signDate; - (void)signViewUpdate; @property (nonatomic, weak) id delegate; @end @protocol EBCalendarViewDelegate @optional - (void)calendarView:(EBCalendarView*)calendarView didSelectedDate:(NSDate*)date; @end