iOS进阶

iOS NSCalendar 日历【转】

2020-06-15  本文已影响0人  Aliv丶Zz

NSCalendar 对世界上现存的常用的历法进行了封装,既提供了不同历法的时间信息,又支持日历的计算。可以很方便的用来表示日期,获取日期的各种信息,包括年、月、日,时分秒。可以很方便的计算两个日期之前的关系。也可以很方便的根据一个日期获取另一个日期。

1. 日历的创建

根据提供的日历标示符初始化。
identifier 的范围可以是:

        NSCalendarIdentifierGregorian         公历
        NSCalendarIdentifierBuddhist          佛教日历
        NSCalendarIdentifierChinese           中国农历
        NSCalendarIdentifierHebrew            希伯来日历
        NSCalendarIdentifierIslamic           伊斯兰日历
        NSCalendarIdentifierIslamicCivil      伊斯兰教日历
        NSCalendarIdentifierJapanese          日本日历
        NSCalendarIdentifierRepublicOfChina   中华民国日历(台湾)
        NSCalendarIdentifierPersian           波斯历
        NSCalendarIdentifierIndian            印度日历
        NSCalendarIdentifierISO8601           ISO8601
// 使用用户手机设置的日期信息,有缓存,用户手机日历改变后不会变
@property (class, readonly, copy) NSCalendar *currentCalendar;  
// 使用用户手机设置的日期信息,并且用户改变之后会跟着改变
@property (class, readonly, strong) NSCalendar *autoupdatingCurrentCalendar API_AVAILABLE(macos(10.5), ios(2.0), watchos(2.0), tvos(9.0)); // tracks changes to user's preferred calendar identifier
// 使用指定的标识获取日期,比如农历、佛历,常用的是格里高利历(NSCalendarIdentifierGregorian)
+ (nullable NSCalendar *)calendarWithIdentifier:(NSCalendarIdentifier)calendarIdentifierConstant API_AVAILABLE(macos(10.9), ios(8.0), watchos(2.0), tvos(9.0));
- (nullable id)initWithCalendarIdentifier:(NSCalendarIdentifier)ident NS_DESIGNATED_INITIALIZER;
NSDateComponents *comps = [NSCalendar.currentCalendar components:NSCalendarUnitYear | NSCalendarUnitMonth | NSCalendarUnitDay fromDate:[NSDate date]];

2. 日历的设置

NSCalendar *calendar = [NSCalendar currentCalendar];
    
    // 获取日历标示符
NSString *calendarIdentifier =  calendar.calendarIdentifier;
    
    // 获取地区信息
    /*
        语言地区
    */
NSString *localeIdentifier = calendar.locale.localeIdentifier;
NSString *localeIdentifier2 = [calendar.locale objectForKey:NSLocaleIdentifier];
        
    // 获取时区信息
    NSTimeZone *timeZone = calendar.timeZone;
        
    // 获取每周的第一天从星期几开始
    /*
        缺省为星期天
    */
    NSUInteger firstWeekday = calendar.firstWeekday;
        
    // 获取第一周必须包含的最少天数
    /*
        缺省为 1
    */
    NSUInteger minimumDaysInFirstWeek = calendar.minimumDaysInFirstWeek;

3. 日历信息的获取

1) 获取一个小的单位在一个大的单位里面的序数
NSUInteger count = [calendar ordinalityOfUnit:NSCalendarUnitWeekday
inUnit:NSCalendarUnitWeekOfMonth
forDate:[NSDate date]];

2)获取一个小的单位在一个大的单位里面的取值范围

NSRange range = [calendar rangeOfUnit:NSCalendarUnitDay inUnit:NSCalendarUnitMonth forDate:[NSDate date]];
NSLog(@"%zi -- %zi", range.location, range.length);
- (NSRange)rangeOfUnit:(NSCalendarUnit)smaller inUnit:(NSCalendarUnit)larger forDate:(NSDate *)date;

调用这个方法要明确一点,取得的是"范围"而不是"包含",下面是一些例子:

<1>、小单位是 NSCalendarUnitDay,大单位是 NSCalendarUnitYear,并不是要取这一年包含多少天,而是要取"天"(Day)这个单位
     在这一年(Year)的取值范围。其实不管你提供的日期是多少,返回的值都是"1--31"。

<2>、小单位是 NSCalendarUnitDay,大单位是 NSCalendarUnitMonth。要取得参数时间点所对应的月份下,"天"(Day)的取值范围。
     根据参数时间的月份不同,值也不同。例如2月是1--28、3月是 1--31、4月是1--30。

<3>、小单位是 NSCalendarUnitWeekOfMonth / NSCalendarUnitWeekOfYear,大单位是 NSCalendarUnitMonth。要取得参数
     时间点所对应的月份下,"周"(Week)的取值范围。需要注意的是结果会受到 minimumDaysInFirstWeek 属性的影响。在默认 
     minimumDaysInFirstWeek 情况下,取得的范围值一般是"1--5",从日历上可以看出来这个月包含5排,即5个周。

<4>、小单位是 NSCalendarUnitDay,大单位是 NSCalendarUnitWeekOfMonth / NSCalendarUnitWeekOfYear。要取得周所包含
     的"天"(Day)的取值范围。下面是一个示例日历图:

        2013年4月
        日   一    二   三   四    五   六
        ---------------------------------
             1    2    3    4    5    6    
        7    8    9    10   11   12  13   
        14   15   16   17   18   19  20   
        21   22   23   24   25   26  27   
        28   29   30

        在上图的日期条件下,假如提供的参数是4月1日--4月6日,那么对应的 week 就是1(第一个周),可以看到第一个周包含有6天,
    从1号开始,那么最终得到的范围值为1--6。

    假如提供的参数是4月18日,那么对应的 week 是3(第三个周),第三个周包含有7天,从14号开始,那么最终得到的范围值是14--7。

    假如提供的参数是4月30日,那么对应的 week 是5(第五个周),第五个周只包含3天,从28号开始,那么最终得到的范围值是28--3。

3)获取所在日历单位的开始时间及所在日历单位的总秒数

NSDate *startDate = nil;
NSTimeInterval intervalCount = 0;

BOOL bl = [calendar rangeOfUnit:NSCalendarUnitMonth 
                      startDate:&startDate 
                       interval:&intervalCount 
                        forDate:[NSDate date]];

if (bl) {

    // 得到本地时间,避免时区问题
    startDate = [startDate dateByAddingTimeInterval:[[NSTimeZone systemTimeZone] secondsFromGMTForDate:startDate]];

    NSLog(@"%@",startDate);
    NSLog(@"%f",intervalCount);
}
else {
    NSLog(@"无法计算");
}
//获取日期date对应月的第一天日期
+ (NSString *)getMonthFirstDayWithDate:(NSDate *)date format:(NSString *)aformat;
//获取日期date对应月的最后一天日期
+ (NSString *)getMonthLastDayWithDate:(NSDate *)date format:(NSString *)aformat;
//获取对应日期是周几
+ (NSInteger)getWeekDayFromDate:(NSDate *)date;


+ (NSString *)getMonthFirstDayWithDate:(NSDate *)date format:(NSString *)aformat{
    NSDate *newDate = date;
    double interval = 0;
    NSDate *firstDate = nil;
    NSCalendar *calendar = [NSCalendar currentCalendar];
    BOOL bl = [calendar rangeOfUnit:NSCalendarUnitMonth startDate:& firstDate interval:&interval forDate:newDate];
    if (bl) {
        NSDateFormatter *myDateFormatter = [[NSDateFormatter alloc] init];
        [myDateFormatter setDateFormat:aformat];
        NSString *firstString = [myDateFormatter stringFromDate: firstDate];
        return firstString;
    }
    return @"";
}
+ (NSString *)getMonthLastDayWithDate:(NSDate *)date format:(NSString *)aformat{
    NSDate *newDate = date;
    double interval = 0;
    NSDate *firstDate = nil;
    NSDate *lastDate = nil;
    NSCalendar *calendar = [NSCalendar currentCalendar];
    BOOL bl = [calendar rangeOfUnit:NSCalendarUnitMonth startDate:& firstDate interval:&interval forDate:newDate];
    if (bl) {
        lastDate = [firstDate dateByAddingTimeInterval:interval - 1];
        NSDateFormatter *myDateFormatter = [[NSDateFormatter alloc] init];
        [myDateFormatter setDateFormat:aformat];
        NSString *lastString = [myDateFormatter stringFromDate: lastDate];
        return lastString;
    }
    return @"";
}

+ (NSInteger)getWeekDayFromDate:(NSDate *)date{
    NSArray *tempWeek = @[@"7",@"1",@"2",@"3",@"4",@"5",@"6"];
    NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSCalendarIdentifierGregorian];
    
    NSDateComponents *comps = [[NSDateComponents alloc] init];
    
    NSInteger unitFlags = NSCalendarUnitYear |NSCalendarUnitMonth | NSCalendarUnitDay |NSCalendarUnitWeekday | NSCalendarUnitHour |NSCalendarUnitMinute |NSCalendarUnitSecond;
    
    comps = [calendar components:unitFlags fromDate:date];
    //  1、2、3、4、5、6、7 分别对应 周日、周一、周二、周三、周四、周五、周六
    NSInteger week = [comps weekday];
    NSLog(@"---%ld",week);
    return  [tempWeek[week-1] integerValue] ;
    
}

参考资料:
QianChia NSCalendar - 日历

山有木枝壮 NSCalendar使用

上一篇下一篇

猜你喜欢

热点阅读