iOS自定義日歷控件的簡單實現(xiàn)過程
因為程序要求要插入一個日歷控件,該空間的要求是從當(dāng)天開始及以后的六個月內(nèi)的日歷,上網(wǎng)查資料基本上都說只要獲取兩個條件(當(dāng)月第一天周幾和本月一共有多少天)就可以實現(xiàn)一個簡單的日歷,剩下的靠自己的簡單邏輯就OK了,下面開始自己從開始到完成的整個過程:
1.首先做NSDate類目,擴展一些方法讓日期之間轉(zhuǎn)換更加方便
#import <Foundation/Foundation.h> @interface NSDate (LYWCalendar) #pragma mark - 獲取日 - (NSInteger)day:(NSDate *)date; #pragma mark - 獲取月 - (NSInteger)month:(NSDate *)date; #pragma mark - 獲取年 - (NSInteger)year:(NSDate *)date; #pragma mark - 獲取當(dāng)月第一天周幾 - (NSInteger)firstWeekdayInThisMonth:(NSDate *)date; #pragma mark - 獲取當(dāng)前月有多少天 - (NSInteger)totaldaysInMonth:(NSDate *)date; @end
下面一一實現(xiàn)這些方法
#import "NSDate+LYWCalendar.h" @implementation NSDate (LYWCalendar) /** *實現(xiàn)部分 */ #pragma mark -- 獲取日 - (NSInteger)day:(NSDate *)date{ NSDateComponents *components = [[NSCalendar currentCalendar] components:(NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay) fromDate:date]; return components.day; } #pragma mark -- 獲取月 - (NSInteger)month:(NSDate *)date{ NSDateComponents *components = [[NSCalendar currentCalendar] components:(NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay) fromDate:date]; return components.month; } #pragma mark -- 獲取年 - (NSInteger)year:(NSDate *)date{ NSDateComponents *components = [[NSCalendar currentCalendar] components:(NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay) fromDate:date]; return components.year; } #pragma mark -- 獲得當(dāng)前月份第一天星期幾 - (NSInteger)firstWeekdayInThisMonth:(NSDate *)date{ NSCalendar *calendar = [NSCalendar currentCalendar]; //設(shè)置每周的第一天從周幾開始,默認(rèn)為1,從周日開始 [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]; //若設(shè)置從周日開始算起則需要減一,若從周一開始算起則不需要減 return firstWeekday - 1; } #pragma mark -- 獲取當(dāng)前月共有多少天 - (NSInteger)totaldaysInMonth:(NSDate *)date{ NSRange daysInLastMonth = [[NSCalendar currentCalendar] rangeOfUnit:NSCalendarUnitDay inUnit:NSCalendarUnitMonth forDate:date]; return daysInLastMonth.length; }
接下來就要寫邏輯部分了,在ViewController里面實現(xiàn),先說思想,首先想到的是用collectionView,但是每個月天數(shù)不一樣在日歷中的顯示就不一樣,有時候有五行有時候有六行,既然要用自動填充就必須考慮到這一點,下面是代碼實現(xiàn)
#import "ViewController.h" #import "Macro.h" #import "NSDate+LYWCalendar.h" #import "LYWCollectionViewCell.h" #import "LYWCollectionReusableView.h"
定義一些全局變量
static NSString *cellID = @"cellID"; static NSString *headerID = @"headerID"; static NSString *footerID = @"footerID"; @implementation ViewController { //自動布局 UICollectionViewFlowLayout *_layout; //表格視圖 UICollectionView *_collectionView; //當(dāng)月第一天星期幾 NSInteger firstDayInMounthInWeekly; NSMutableArray *_firstMounth; //容納六個數(shù)組的數(shù)組 NSMutableArray *_sixArray; }
//定義星期視圖,若為周末則字體顏色為綠色 self.automaticallyAdjustsScrollViewInsets = NO;//關(guān)閉自動適應(yīng) NSArray *weekTitleArray = @[@"周日",@"周一",@"周二",@"周三",@"周四",@"周五",@"周六"]; for (int i = 0; i < weekTitleArray.count; i++) { UILabel *weekTitleLable = [[UILabel alloc]initWithFrame:CGRectMake(i * ((ScreenWidth/(weekTitleArray.count))), 64, ScreenWidth/(weekTitleArray.count ), 30)]; if (i == 0 || i == 6) { weekTitleLable.textColor = [UIColor greenColor]; }else{ weekTitleLable.textColor = [UIColor blackColor]; } weekTitleLable.text = [weekTitleArray objectAtIndex:i]; weekTitleLable.textAlignment = NSTextAlignmentCenter; [self.view addSubview:weekTitleLable]; }
//設(shè)置collectionView及自動布局,代理方法尤為重要 _layout = [[UICollectionViewFlowLayout alloc]init]; //頭部始終在頂端 _layout.sectionHeadersPinToVisibleBounds = YES; //頭部視圖高度 _layout.headerReferenceSize = CGSizeMake(414, 40); _layout.minimumLineSpacing = 0; _layout.minimumInteritemSpacing = 0; _collectionView = [[UICollectionView alloc]initWithFrame:CGRectMake(0, 64 + 30, ScreenWidth, ScreenHeight - 64 - 30) collectionViewLayout:_layout]; _collectionView.backgroundColor = [UIColor whiteColor]; //注冊表格 [_collectionView registerClass:[LYWCollectionViewCell class] forCellWithReuseIdentifier:cellID]; //注冊頭視圖 [_collectionView registerClass:[LYWCollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:headerID]; //注冊尾視圖 // [_collectionView registerClass:[UICollectionReusableView class] forCellWithReuseIdentifier:footerID]; _collectionView.delegate = self; _collectionView.dataSource = self; [self.view addSubview:_collectionView];
邏輯部分,這里有個比較長的三項表達式
(daysInMounth > 29 && (firstDayInThisMounth == 6 || firstDayInThisMounth ==5) ? 42 : 35)
就是日歷到底是六行還是七行,這就要根據(jù)日歷的特性來判斷了,如果當(dāng)月天數(shù)大于29天并且當(dāng)月第一天星期六(以這個程序的準(zhǔn)則)或者星期天是返回六行剩下的返回三行,也有可能返回四行的,但是就這個程序來說是不可能的也就不需要做判斷了
//NumberMounthes 為宏定義,表示要顯示月的個數(shù),程序要求是六個月,所以宏定義為六 //#define NumberMounthes 6 //想要展示的月數(shù) //創(chuàng)建六個數(shù)組,并將這六個數(shù)組裝入大數(shù)組中 _sixArray = [[NSMutableArray alloc]init]; for (int i = 0; i < NumberMounthes ; i++ ) { NSMutableArray *array = [[NSMutableArray alloc]init]; [_sixArray addObject:array]; } //為六個數(shù)組寫入每個月的日歷信息 for (int i = 0 ; i < NumberMounthes; i++) { //獲取月份 int mounth = ((int)[currentDate month:currentDate] + i)%12; NSDateComponents *components = [[NSDateComponents alloc]init]; //獲取下個月的年月日信息,并將其轉(zhuǎn)為date components.month = mounth; components.year = 2016 + mounth/12; components.day = 1; NSCalendar *calendar = [NSCalendar currentCalendar]; NSDate *nextDate = [calendar dateFromComponents:components]; //獲取該月第一天星期幾 NSInteger firstDayInThisMounth = [nextDate firstWeekdayInThisMonth:nextDate]; //該月的有多少天daysInThisMounth NSInteger daysInThisMounth = [nextDate totaldaysInMonth:nextDate]; NSString *string = [[NSString alloc]init]; for (int j = 0; j < (daysInMounth > 29 && (firstDayInThisMounth == 6 || firstDayInThisMounth ==5) ? 42 : 35) ; j++) { if (j < firstDayInThisMounth || j > daysInThisMounth + firstDayInThisMounth - 1) { string = @""; [[_sixArray objectAtIndex:i]addObject:string]; }else{ string = [NSString stringWithFormat:@"%ld",j - firstDayInThisMounth + 1]; [[_sixArray objectAtIndex:i]addObject:string]; } } }
下面是代理方法
//這兩個不用說,返回cell個數(shù)及section個數(shù) - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{ return [[_sixArray objectAtIndex:section] count]; } - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{ return _sixArray.count; }
//這里是自定義cell,非常簡單的自定義 - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{ LYWCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:cellID forIndexPath:indexPath]; UIView *blackgroundView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, cell.frame.size.width, cell.frame.size.height)]; blackgroundView.backgroundColor = [UIColor yellowColor]; cell.dateLable.text = [[_sixArray objectAtIndex:indexPath.section]objectAtIndex:indexPath.row]; NSDate *date = [[NSDate alloc]init]; NSInteger day = [date day:date]; //設(shè)置單擊后的顏色 cell.selectedBackgroundView = blackgroundView; return cell; }
自定義cell .h
#import <UIKit/UIKit.h> @interface LYWCollectionViewCell : UICollectionViewCell @property (nonatomic,strong) UILabel *dateLable; - (instancetype)initWithFrame:(CGRect)frame; @end
.m
#import "LYWCollectionViewCell.h" @implementation LYWCollectionViewCell - (instancetype)initWithFrame:(CGRect)frame{ if (self == [super initWithFrame:frame]) { _dateLable = [[UILabel alloc] initWithFrame:self.bounds]; [_dateLable setTextAlignment:NSTextAlignmentCenter]; [_dateLable setFont:[UIFont systemFontOfSize:17]]; _dateLable.textColor = [UIColor blackColor]; [self addSubview:_dateLable]; } return self; } @end
接著代理
//cell大小及間距 - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath{ return CGSizeMake(ScreenWidth/7, ScreenWidth/7); } - (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section{ return UIEdgeInsetsMake(0, 0, 0, 0); }
既然有日歷,總得顯示哪年哪月吧,前面已經(jīng)注冊表頭視圖了,這里只需要實現(xiàn)以下代理方法即可
collectionView有點不同其頭視圖也有單獨的類,和cell一樣先自定義headCell,也是非常簡單的自定義
.h文件
#import <UIKit/UIKit.h> @interface LYWCollectionReusableView : UICollectionReusableView @property (nonatomic,strong) UILabel *dateLable; - (instancetype)initWithFrame:(CGRect)frame; @end
.m文件
#import "LYWCollectionReusableView.h" @implementation LYWCollectionReusableView - (instancetype)initWithFrame:(CGRect)frame{ if (self == [super initWithFrame:frame]) { _dateLable = [[UILabel alloc] initWithFrame:self.bounds]; [_dateLable setTextAlignment:NSTextAlignmentLeft]; [_dateLable setFont:[UIFont systemFontOfSize:20]]; _dateLable.textColor = [UIColor blackColor]; [self addSubview:_dateLable]; } return self; } @end
接著代理方法,這里也有個三項判斷式,和上面的大同小異,主要是防止12月顯示為0月
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath{ if (kind == UICollectionElementKindSectionHeader) { LYWCollectionReusableView *headerRV = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:headerID forIndexPath:indexPath]; //自定義藍色 headerRV.backgroundColor = DODGER_BLUE; NSDate *currentDate = [[NSDate alloc]init]; NSInteger year = ([currentDate month:currentDate] + indexPath.section)/12 + 2016; NSInteger mounth = ([currentDate month:currentDate] + indexPath.section) % 12 == 0 ? 12 : ([currentDate month:currentDate] + indexPath.section)%12; headerRV.dateLable.text = [NSString stringWithFormat:@"%ld年%ld月",year,mounth]; return headerRV; }else{ return nil; } }
還是代理,處理選中效果,選中的為黃色
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{ LYWCollectionViewCell *cell = [self collectionView:_collectionView cellForItemAtIndexPath:indexPath]; NSDate *currentDate = [[NSDate alloc]init]; //打印當(dāng)前日期 if (![cell.dateLable.text isEqualToString:@""]) { NSInteger year = ([currentDate month:currentDate] + indexPath.section)/12 + 2016; NSInteger mounth = ([currentDate month:currentDate] + indexPath.section)%12; NSInteger day = [cell.dateLable.text intValue]; NSLog(@"%ld年%02ld月%02ld日",year,mounth,day); } //排除空值cell //獲取月份 NSInteger mounth = ([currentDate month:currentDate] + indexPath.section) % 12 == 0 ? 12 : ([currentDate month:currentDate] + indexPath.section)%12; NSDateComponents *components = [[NSDateComponents alloc]init]; components.month = mounth; components.year = 2016 + mounth/12; components.day = 1; NSCalendar *calendar = [NSCalendar currentCalendar]; NSDate *nextDate = [calendar dateFromComponents:components]; //獲取該月第一天星期幾 NSInteger firstDayInThisMounth = [nextDate firstWeekdayInThisMonth:nextDate]; //該月的有多少天daysInThisMounth NSInteger daysInThisMounth = [nextDate totaldaysInMonth:nextDate]; if ((indexPath.row < firstDayInThisMounth || indexPath.row > daysInThisMounth + firstDayInThisMounth - 1)){ //如果點擊空表格則單擊無效 [collectionView cellForItemAtIndexPath:indexPath].userInteractionEnabled = NO; [collectionView reloadData]; } }
最后展示很爛的效果圖:
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
iOS開發(fā)藍牙技術(shù)應(yīng)用增加無線連接功能
這篇文章主要為大家介紹了iOS開發(fā)藍牙技術(shù)應(yīng)用增加無線連接功能示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2023-02-02iOS App開發(fā)中使用設(shè)計模式中的單例模式的實例解析
單例模式是最簡單和基本的一種設(shè)計模式,下面我們就簡單解讀一下iOS中單例設(shè)計模式的用法,示例代碼還是為傳統(tǒng)的Objective-C,主要為了體現(xiàn)單例模式的思想,需要的朋友可以參考下2016-05-05ios的collection控件的自定義布局實現(xiàn)與設(shè)計
這篇文章主要介紹了mac、iOS端支持自定義布局的collection控件的實現(xiàn)與設(shè)計,需要的朋友學(xué)習(xí)參考下吧。2017-12-12兩種iOS調(diào)用系統(tǒng)發(fā)短信的方法
iOS調(diào)用系統(tǒng)的發(fā)短信功能可以分為兩種:1,程序外調(diào)用系統(tǒng)發(fā)短信。2,程序內(nèi)調(diào)用系統(tǒng)發(fā)短信。第二種的好處是用戶發(fā)短信之后還可以回到app。這對app來說非常重要。2016-07-07iOS中json解析出現(xiàn)的null,nil,NSNumber的解決辦法
在iOS開發(fā)過程中經(jīng)常需要與服務(wù)器進行數(shù)據(jù)通訊,Json就是一種常用的高效簡潔的數(shù)據(jù)格式,通過本文給大家介紹iOS中json解析出現(xiàn)的null,nil,NSNumber的解決辦法,感興趣的朋友參考下2016-01-01