美文网首页
iOS日历--单个UICollectionView实现的日历

iOS日历--单个UICollectionView实现的日历

作者: iOS_dev | 来源:发表于2019-10-14 16:41 被阅读0次

    费话不多说直接上代码
    欢迎下载:项目地址

    效果如下


    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);
        };
    

    相关文章

      网友评论

          本文标题:iOS日历--单个UICollectionView实现的日历

          本文链接:https://www.haomeiwen.com/subject/hvrzrctx.html