费话不多说直接上代码
欢迎下载:项目地址
效果如下
IMG_5238.GIF
使用方法
1.把DACalendar文件夹添加到项目,引入LFCalendarView.h
2.加入如下代码
_calendarView = [[LFCalendarView alloc] initWithFrame:CGRectMake(0, 100, [UIScreen mainScreen].bounds.size.width, DefaultCalendarViewHeight)];
[self.view addSubview:self.calendarView];
self.calendarView.calenderShowDateBlock = ^(NSDate * _Nonnull date, NSInteger lines) {
NSLog(@"%@",date);
};
网友评论