博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NSDate增加分类 计算某年某月某日
阅读量:4973 次
发布时间:2019-06-12

本文共 2302 字,大约阅读时间需要 7 分钟。

#import <Foundation/Foundation.h>

 

@interface NSDate (Addition)

/**

 *某一天在当月多少号

 */

- (NSInteger)daysOfCurrentMonth;

/**

 *  某月第一天周几

 *

 */

- (NSInteger)weekOfFirstDayInCurrentMonth;

- (NSInteger)day;

- (NSInteger)month;

- (NSInteger)year;

- (NSString *)dateStrWithFormat:(NSString *)format;

- (NSTimeInterval)zeroTimestamp;

@end

 

 

#import "NSDate+Addition.h"

 

@implementation NSDate (Addition)

 

- (NSInteger)daysOfCurrentMonth

{

    NSInteger days = 0;

    NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSCalendarIdentifierGregorian];

    days = [calendar rangeOfUnit:NSCalendarUnitDay inUnit:NSCalendarUnitMonth forDate:self].length;

    return days;

}

 

- (NSInteger)weekOfFirstDayInCurrentMonth

{

    NSInteger week = 0;

    NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSCalendarIdentifierGregorian];

    week = [calendar ordinalityOfUnit:NSCalendarUnitDay inUnit:NSCalendarUnitWeekOfMonth forDate:self] - 1;

    return week;

}

 

- (NSInteger)day

{

    NSInteger day = 1;

    NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSCalendarIdentifierGregorian];

    day = [calendar ordinalityOfUnit:NSCalendarUnitDay inUnit:NSCalendarUnitMonth forDate:self];

    return day;

}

 

- (NSInteger)month

{

    NSInteger month = 1;

    NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSCalendarIdentifierGregorian];

    month = [calendar ordinalityOfUnit:NSCalendarUnitMonth inUnit:NSCalendarUnitYear forDate:self];

    return month;

}

 

- (NSInteger)year

{

    NSInteger year = 2015;

    NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSCalendarIdentifierGregorian];

    year = [calendar ordinalityOfUnit:NSCalendarUnitYear inUnit:NSCalendarUnitEra forDate:self];

    return year;

}

 

- (NSString *)dateStrWithFormat:(NSString *)format

{

    NSDateFormatter *formatter = [[NSDateFormatter alloc] init];

    formatter.dateFormat = format;

    return [formatter stringFromDate:self];

}

 

- (NSTimeInterval)zeroTimestamp

{

    NSTimeInterval timeInterval = 0;

    NSDateFormatter *formatter = [[NSDateFormatter alloc] init];

    formatter.dateFormat = @"yyyy-MM-dd";

    NSString *zeroTimeStr = [formatter stringFromDate:self];

    NSDate *zeroDate = [formatter dateFromString:zeroTimeStr];

    timeInterval = [zeroDate timeIntervalSince1970];

    return timeInterval;

}

 在制作日历是时间的分类尤其重要.

转载于:https://www.cnblogs.com/LVanswer/p/5687146.html

你可能感兴趣的文章
数据库多张表导出到excel
查看>>
微信小程序去除button默认样式
查看>>
Where does Visual Studio look for C++ Header files?
查看>>
Java打包可执行jar包 包含外部文件
查看>>
Docker容器运行ASP.NET Core
查看>>
Windows Phone开发(37):动画之ColorAnimation
查看>>
DevExpress的Web控件汉化方法
查看>>
js中escape,encodeURI,encodeURIComponent 区别(转)
查看>>
Android studio怎么修改文件名
查看>>
sass学习笔记-安装
查看>>
多缓存并存
查看>>
Flask (二) cookie 与 session 模型
查看>>
修改添加网址的教程文件名
查看>>
hdu 1045:Fire Net(DFS经典题)
查看>>
[BZOJ 1017][JSOI2008]魔兽地图DotR(树形Dp)
查看>>
裁剪图片
查看>>
数据结构实习 problem L 由二叉树的中序层序重建二叉树
查看>>
VS中展开和折叠代码
查看>>
如何确定VS编译器版本
查看>>
设置PL/SQL 快捷键
查看>>