iOS開(kāi)發(fā)日歷

由于工作需求自己寫(xiě)了一個(gè)日歷, 大概思路是: 通過(guò)collectionView來(lái)做, 具備上一月下一月的切換, 日歷樣式自定義collectionViewCell就可以.
關(guān)鍵代碼如下:

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view from its nib.

    _currentDate = [NSDate date];
    _firstDay = [self firstWeekdayInThisMotnth:_currentDate];
    _totalDays = [self totaldaysInMonth:_currentDate];

    [self.view addSubview:self.collectionView];
}
#pragma mark - 懶加載collectiongView
- (UICollectionView *)collectionView {
    if (!_collectionView) {
        UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];
        layout.minimumLineSpacing = 0;
        layout.minimumInteritemSpacing = 0;
        layout.itemSize = CGSizeMake(([UIScreen mainScreen].bounds.size.width -20) / 7, ([UIScreen mainScreen].bounds.size.width -20) / 7 * 1.6);
        layout.headerReferenceSize = CGSizeMake([UIScreen mainScreen].bounds.size.width, 165);
        layout.scrollDirection = UICollectionViewScrollDirectionVertical;
        
        _collectionView = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height) collectionViewLayout:layout];
        _collectionView.backgroundColor = [UIColor whiteColor];
        _collectionView.delegate = self;
        _collectionView.dataSource = self;
        _collectionView.contentInset = UIEdgeInsetsMake(0, 10, 0, 10);
        [_collectionView registerNib:[UINib nibWithNibName:@"CalendarCollectionViewCell" bundle:nil] forCellWithReuseIdentifier:@"CalendarCollectionViewCell"];
        // 如果有頭部視圖必須要先注冊(cè)
        [_collectionView registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:headerViewIdentifier];
        _collectionView.alwaysBounceVertical = YES;
        _collectionView.alwaysBounceHorizontal = NO;
    }
    return _collectionView;
}
#pragma mark - UICollectionViewDatasource
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
    return _totalDays + _firstDay;
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
    
    HMCalendarCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"HMCalendarCollectionViewCell" forIndexPath:indexPath];
    
    NSInteger day = indexPath.item - _firstDay;
    
    [cell setDataWithIndex:day + 1 withIndex:indexPath.item];

    NSString *dayStr = @"";
    if ((day + 1) > 9) {
        dayStr = [NSString stringWithFormat:@"%zd",(day + 1)];
    } else {
        dayStr = [NSString stringWithFormat:@"0%zd",(day + 1)];
    }
    
    return cell;
}
#pragma mark - 日期的相關(guān)處理
// 上一月
- (void)lastMonthClick {
    _currentDate = [self lastMonth:_currentDate];
    _firstDay = [self firstWeekdayInThisMotnth:_currentDate];
    _totalDays = [self totaldaysInMonth:_currentDate];
    [self.collectionView reloadData];
}
// 下一月
- (void)nextMonthClick {
    _currentDate = [self nextMonth:_currentDate];
    _firstDay = [self firstWeekdayInThisMotnth:_currentDate];
    _totalDays = [self totaldaysInMonth:_currentDate];
    [self.collectionView reloadData];
}
// 計(jì)算某月的第一天為周幾
- (NSInteger)firstWeekdayInThisMotnth:(NSDate *)date{
    NSCalendar *calendar = [NSCalendar currentCalendar]; // 取得當(dāng)前用戶(hù)的邏輯日歷(logical calendar)
    
    [calendar setFirstWeekday:2]; //  設(shè)定每月的第一天從星期幾開(kāi)始轿衔,比如:. 如需設(shè)定從星期日開(kāi)始,則value傳入1 闹伪,如需設(shè)定從星期一開(kāi)始,則value傳入2 掀宋,以此類(lèi)推
    NSDateComponents *comp = [calendar components:NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay fromDate:date];
    [comp setDay:1]; // 設(shè)置為這個(gè)月的第一天
    NSDate *firstDayOfMonthDate = [calendar dateFromComponents:comp];
    NSUInteger firstWeekday = [calendar ordinalityOfUnit:NSCalendarUnitWeekday inUnit:NSCalendarUnitWeekOfMonth forDate:firstDayOfMonthDate]; // 這個(gè)月第一天在當(dāng)前日歷的順序
    // 返回某個(gè)特定時(shí)間(date)其對(duì)應(yīng)的小的時(shí)間單元(smaller)在大的時(shí)間單元(larger)中的順序
    return firstWeekday - 1;
}
// 計(jì)算某月一共有多少天
- (NSInteger)totaldaysInMonth:(NSDate *)date{
    NSRange daysInOfMonth = [[NSCalendar currentCalendar] rangeOfUnit:NSCalendarUnitDay inUnit:NSCalendarUnitMonth forDate:date]; // 返回某個(gè)特定時(shí)間(date)其對(duì)應(yīng)的小的時(shí)間單元(smaller)在大的時(shí)間單元(larger)中的范圍
    
    return daysInOfMonth.length;
}
// 日歷的上一個(gè)月
- (NSDate *)lastMonth:(NSDate *)date{
    NSDateComponents *comp = [[NSDateComponents alloc]init];
    comp.month = -1;
    NSDate *newDate = [[NSCalendar currentCalendar] dateByAddingComponents:comp toDate:date options:0];
    return newDate;
}
// 日歷的下一個(gè)月
- (NSDate *)nextMonth:(NSDate *)date{
    NSDateComponents *comp = [[NSDateComponents alloc]init];
    comp.month = 1;
    NSDate *newDate = [[NSCalendar currentCalendar] dateByAddingComponents:comp toDate:date options:0];
    return newDate;
}
#pragma mark - 日期處理方法(附加)
// 處理日期的上一日下一日
- (void)processingDateWithType:(NSInteger)type {
    // type  1為下一日    -1為上一日
    NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSCalendarIdentifierGregorian];
    NSDateComponents *adComps = [[NSDateComponents alloc] init];
    [adComps setDay:type];
    _currentDate = [calendar dateByAddingComponents:adComps toDate:_currentDate options:0];
    
    self.dateLabel.text = [_currentDate stringWithDateFormatter:@"yyyy.MM.dd"];
}
// 判斷是不是當(dāng)天
- (BOOL)isSameDay:(NSDate*)date1 date2:(NSDate*)date2
{
    NSCalendar* calendar = [NSCalendar currentCalendar];
    
    unsigned unitFlags = NSCalendarUnitYear | NSCalendarUnitMonth |  NSCalendarUnitDay;
    NSDateComponents* comp1 = [calendar components:unitFlags fromDate:date1];
    NSDateComponents* comp2 = [calendar components:unitFlags fromDate:date2];
    
    return [comp1 day]   == [comp2 day] &&
    [comp1 month] == [comp2 month] &&
    [comp1 year]  == [comp2 year];
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末腰根,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子鹅巍,更是在濱河造成了極大的恐慌音同,老刑警劉巖词爬,帶你破解...
    沈念sama閱讀 206,968評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異权均,居然都是意外死亡顿膨,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門(mén)叽赊,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)恋沃,“玉大人,你說(shuō)我怎么就攤上這事必指∧矣剑” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 153,220評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀(guān)的道長(zhǎng)梅割。 經(jīng)常有香客問(wèn)我霜第,道長(zhǎng),這世上最難降的妖魔是什么户辞? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,416評(píng)論 1 279
  • 正文 為了忘掉前任泌类,我火速辦了婚禮,結(jié)果婚禮上底燎,老公的妹妹穿的比我還像新娘刃榨。我一直安慰自己,他們只是感情好双仍,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評(píng)論 5 374
  • 文/花漫 我一把揭開(kāi)白布枢希。 她就那樣靜靜地躺著,像睡著了一般朱沃。 火紅的嫁衣襯著肌膚如雪苞轿。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 49,144評(píng)論 1 285
  • 那天为流,我揣著相機(jī)與錄音呕屎,去河邊找鬼让簿。 笑死敬察,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的尔当。 我是一名探鬼主播莲祸,決...
    沈念sama閱讀 38,432評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼椭迎!你這毒婦竟也來(lái)了锐帜?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,088評(píng)論 0 261
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤畜号,失蹤者是張志新(化名)和其女友劉穎缴阎,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體简软,經(jīng)...
    沈念sama閱讀 43,586評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡蛮拔,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了痹升。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片建炫。...
    茶點(diǎn)故事閱讀 38,137評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖疼蛾,靈堂內(nèi)的尸體忽然破棺而出肛跌,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 33,783評(píng)論 4 324
  • 正文 年R本政府宣布衍慎,位于F島的核電站转唉,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏西饵。R本人自食惡果不足惜酝掩,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望眷柔。 院中可真熱鬧期虾,春花似錦、人聲如沸驯嘱。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,333評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)鞠评。三九已至茂蚓,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間剃幌,已是汗流浹背聋涨。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,559評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留负乡,地道東北人牍白。 一個(gè)月前我還...
    沈念sama閱讀 45,595評(píng)論 2 355
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像抖棘,于是被迫代替她去往敵國(guó)和親茂腥。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容