iOS-简单日历

效果图:


date.png

简单代码:

#define collectionH (kMainScreenWidth-20)*6/7
#define itemMargin 0
NSString *const cellIdentifier = @"sttenceCell";

<UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout>{
    UICollectionViewFlowLayout *_flowLayout;
}
@ppoperty(nonstick,strong) UIView *contentView;
@property(nonatomic,strong) UIView *topView;
@property(nonatomic,strong) UICollectionView *collectionView;
@property(nonatomic,strong) UILabel *monthLabel;
@property(nonatomic,strong) UIButton *previousBtn;
@property(nonatomic,strong) UIButton *nextBtn;

@property(nonatomic,strong) NSArray *weekDayArray;
@property (nonatomic , strong) NSDate *date;
@property (nonatomic , strong) NSDate *today;

@property (weak, nonatomic) IBOutlet NSLayoutConstraint *contentViewHeight;

_contentViewHeight.constant = collectionH+84;
 NSDate *day = [NSDate date];
 self.today = day;
 self.date = self.today;
 NSString *thisMonth =[NSString stringWithFormat:@"%li-%.2ld",[self year:self.date],[self month:self.date]];

self.topView = [[UIView alloc] initWithFrame:CGRectMake(0,0, kMainScreenWidth, 84)];
    self.topView.backgroundColor = [UIColor whiteColor];
    [self.contentView addSubview:self.topView];
 self.previousBtn = [[UIButton alloc] initWithFrame:CGRectMake(10, 0, 40, 40)];
    [self.previousBtn setImage:[UIImage imageNamed:@"backGray"] forState:UIControlStateNormal];
    [self.previousBtn setImage:[UIImage imageNamed:@"backGray"] forState:UIControlStateHighlighted];
    [self.previousBtn addTarget:self action:@selector(previousBtnClick:) forControlEvents:UIControlEventTouchUpInside];
    [self.topView addSubview:self.previousBtn];
    self.nextBtn = [[UIButton alloc] initWithFrame:CGRectMake(kMainScreenWidth-10-40, 0, 40, 40)];
    [self.nextBtn setImage:[UIImage imageNamed:@"rightArrow"] forState:UIControlStateNormal];
    [self.nextBtn setImage:[UIImage imageNamed:@"rightArrow"] forState:UIControlStateHighlighted];
    [self.nextBtn addTarget:self action:@selector(nextBtnClick:) forControlEvents:UIControlEventTouchUpInside];
    [self.topView addSubview:self.nextBtn];
    self.monthLabel = [[UILabel alloc] initWithFrame:CGRectMake(10+40, 0, kMainScreenWidth-100, 40)];
    self.monthLabel.text = @"2018年2月";
    self.monthLabel.textColor = [UIColor lightGrayColor];
    self.monthLabel.textAlignment = NSTextAlignmentCenter;
    [self.topView addSubview:self.monthLabel];

    UIView *weekV = [[UIView alloc] initWithFrame:CGRectMake(0, 40, kMainScreenWidth, 44)];
    weekV.backgroundColor = RGB(234, 234, 234);
    [self.topView addSubview:weekV];
    _weekDayArray = @[@"周日",@"周一",@"周二",@"周三",@"周四",@"周五",@"周六"];
    CGFloat weekW = (kMainScreenWidth-20)/7;
    for (int i = 0; i< 7; i++) {
        UILabel *week = [[UILabel alloc] init];
        week.text = _weekDayArray[i];
        week.textColor = [UIColor darkGrayColor];
        week.textAlignment = NSTextAlignmentCenter;
        week.frame = CGRectMake(10+weekW*i, 0, weekW, 44);
        [weekV addSubview:week];
    }

    // collectionView
    _flowLayout = [[UICollectionViewFlowLayout alloc] init];
    UIView *collectView = [[UIView alloc] initWithFrame:CGRectMake(0,84, kMainScreenWidth, collectionH)];
    collectView.backgroundColor = [UIColor whiteColor];
    [self.contentView addSubview:collectView];
    self.collectionView = [[UICollectionView alloc] initWithFrame:CGRectMake(10,0, kMainScreenWidth-20, collectionH) collectionViewLayout:_flowLayout];
    //self.collectionView.backgroundColor = RGB(244, 244, 244);
    self.collectionView.backgroundColor = [UIColor whiteColor];
    [collectView addSubview:self.collectionView];

    self.collectionView.dataSource = self;
    self.collectionView.delegate = self;

    // 布局
    CGFloat topPading = itemMargin;
    CGFloat itemSpacing = itemMargin;
    CGFloat lineSpacing = itemMargin;
    CGFloat leftPading  = itemMargin;
    CGFloat itemW = (kMainScreenWidth-20-8*itemMargin)/7;
    CGFloat itemH = itemW;
    _flowLayout.itemSize = CGSizeMake(itemW, itemH);
    _flowLayout.minimumInteritemSpacing = itemSpacing;
    _flowLayout.minimumLineSpacing = lineSpacing;
    _flowLayout.sectionInset = UIEdgeInsetsMake(topPading, leftPading, topPading, leftPading);
    [_collectionView setCollectionViewLayout:_flowLayout animated:YES];
    //注册cell
    [_collectionView registerNib:[UINib nibWithNibName:@"GEAttendanceCell" bundle:nil] forCellWithReuseIdentifier:attenceCellIdentifier];

- (void)setDate:(NSDate *)date
{
    _date = date;
    [_monthLabel setText:[NSString stringWithFormat:@"%li-%.2ld",[self year:date],[self month:date]]];
}

#pragma -mark collectionView delegate
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
{
    return 1;
}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
    NSInteger daysInThisMonth = [self totaldaysInMonth:_date];
    NSInteger firstWeekday = [self firstWeekdayInThisMonth:_date];
    NSUInteger count = daysInThisMonth+firstWeekday;
    return count;
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{

    GEAttendanceCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:attenceCellIdentifier forIndexPath:indexPath];

    NSInteger daysInThisMonth = [self totaldaysInMonth:_date];
    NSInteger firstWeekday = [self firstWeekdayInThisMonth:_date];
    NSInteger day = 0;
    NSInteger i = indexPath.row;

    if (i < firstWeekday) {
        cell.contentView.hidden = YES;
        cell.layer.borderWidth=0.0;
    }else if (i > firstWeekday + daysInThisMonth - 1){
        //cell.contentVIew.hidden = YES;
    }else{
        cell.contentView.hidden = NO;

        day = i - firstWeekday + 1;
        [cell.dateTime setText:[NSString stringWithFormat:@"%li",day]];
        [cell.dateTime setTextColor:[UIColor darkGrayColor]];

        //NSUInteger inx = indexPath.row-firstWeekday;
        //cell.attencesModel = _attendaceLsit[inx];
       // cell.markLabel.backgroundColor = [UIColor whiteColor];
        
        //this month
        if ([_today isEqualToDate:_date]) {
            if (day == [self day:_date]) {
                cell.dateTime.backgroundColor = RGB(0, 207, 151);
                cell.dateTime.layer.cornerRadius=10;
                cell.dateTime.layer.masksToBounds=YES;

            } else if (day > [self day:_date]) {
                [cell.dateTime setTextColor:[UIColor lightGrayColor]];
            }
        } else if ([_today compare:_date] == NSOrderedAscending) {
            [cell.dateTime setTextColor:[UIColor lightGrayColor]];
        }

        cell.layer.borderColor=RGB(244, 244, 244).CGColor;
        cell.layer.borderWidth=0.3;
    }

    return cell;

}

- (BOOL)collectionView:(UICollectionView *)collectionView shouldSelectItemAtIndexPath:(NSIndexPath *)indexPath
{

    NSInteger daysInThisMonth = [self totaldaysInMonth:_date];
    NSInteger firstWeekday = [self firstWeekdayInThisMonth:_date];

    NSInteger day = 0;
    NSInteger i = indexPath.row;

    if (i >= firstWeekday && i <= firstWeekday + daysInThisMonth - 1) {
        day = i - firstWeekday + 1;

        //this month
        if ([_today isEqualToDate:_date]) {
            if (day <= [self day:_date]) {
                return YES;
            }
        } else if ([_today compare:_date] == NSOrderedDescending) {
            return YES;
        }
    }

    return NO;
}

#pragma mark btnClick
- (void)previousBtnClick:(UIButton *)btn
{
    self.previousBtn.enabled = NO;
    [self performSelector:@selector(previousbtn:) withObject:nil afterDelay:1.0f];
    self.date = [self lastMonth:self.date];
    //NSString *pTime =[NSString stringWithFormat:@"%li%.2ld-%ld",[self year:self.date],[self month:self.date],[self totaldaysInMonth:self.date]];
    NSString *pTime =[NSString stringWithFormat:@"%li%.2ld",[self year:self.date],[self month:self.date]];

    [self loadHttpDataWithAttendanceDate:pTime];

}
- (void)nextBtnClick:(UIButton *)btn
{
    self.nextBtn.enabled = NO;
    [self performSelector:@selector(nextbtn:) withObject:nil afterDelay:1.0f];
    self.date = [self nextMonth:self.date];
    NSString *nTime =[NSString stringWithFormat:@"%li%.2ld",[self year:self.date],[self month:self.date]];

    [self loadHttpDataWithAttendanceDate:nTime];

}
- (void)previousbtn:(UIButton *)btn
{
    self.previousBtn.enabled = YES;
}
- (void)nextbtn:(UIButton *)btn
{
    self.nextBtn.enabled = YES;
}

#pragma mark - date
- (NSInteger)day:(NSDate *)date{
    NSDateComponents *components = [[NSCalendar currentCalendar] components:(NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay) fromDate:date];
    return [components day];
}
- (NSInteger)month:(NSDate *)date{
    NSDateComponents *components = [[NSCalendar currentCalendar] components:(NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay) fromDate:date];
    return [components month];
}
- (NSInteger)year:(NSDate *)date{
    NSDateComponents *components = [[NSCalendar currentCalendar] components:(NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay) fromDate:date];
    return [components year];
}
- (NSInteger)firstWeekdayInThisMonth:(NSDate *)date{
    NSCalendar *calendar = [NSCalendar currentCalendar];

    [calendar setFirstWeekday:1];//1.Sun. 2.Mon. 3.Thes. 4.Wed. 5.Thur. 6.Fri. 7.Sat.
    NSDateComponents *comp = [calendar components:(NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay) fromDate:date];
    [comp setDay:1];
    NSDate *firstDayOfMonthDate = [calendar dateFromComponents:comp];

    NSUInteger firstWeekday = [calendar ordinalityOfUnit:NSCalendarUnitWeekday inUnit:NSCalendarUnitWeekOfMonth forDate:firstDayOfMonthDate];
    return firstWeekday - 1;
}
- (NSInteger)totaldaysInThisMonth:(NSDate *)date{
    NSRange totaldaysInMonth = [[NSCalendar currentCalendar] rangeOfUnit:NSCalendarUnitDay inUnit:NSCalendarUnitMonth forDate:date];
    return totaldaysInMonth.length;
}
- (NSInteger)totaldaysInMonth:(NSDate *)date{
    NSRange daysInLastMonth = [[NSCalendar currentCalendar] rangeOfUnit:NSCalendarUnitDay inUnit:NSCalendarUnitMonth forDate:date];
    return daysInLastMonth.length;
}
- (NSDate *)lastMonth:(NSDate *)date{
    NSDateComponents *dateComponents = [[NSDateComponents alloc] init];
    dateComponents.month = -1;
    NSDate *newDate = [[NSCalendar currentCalendar] dateByAddingComponents:dateComponents toDate:date options:0];
    return newDate;
}
- (NSDate*)nextMonth:(NSDate *)date{
    NSDateComponents *dateComponents = [[NSDateComponents alloc] init];
    dateComponents.month = +1;
    NSDate *newDate = [[NSCalendar currentCalendar] dateByAddingComponents:dateComponents toDate:date options:0];
    return newDate;
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 151,688评论 1 330
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 64,559评论 1 273
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 101,749评论 0 226
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 42,581评论 0 191
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 50,741评论 3 271
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 39,684评论 1 192
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 31,122评论 2 292
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 29,847评论 0 182
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 33,441评论 0 228
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 29,939评论 2 232
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 31,333评论 1 242
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 27,783评论 2 236
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 32,275评论 3 220
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 25,830评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,444评论 0 180
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 34,553评论 2 249
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 34,618评论 2 249

推荐阅读更多精彩内容