最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
iOS 获取某年某月的天数的示例
时间:2022-06-25 23:35:17 编辑:袖梨 来源:一聚教程网
在限定一个月的时间间隔为第一天和最后一天,需要知道这个月有多少天,才能知道最后一天是多少号,而且还要知道是否是闰年,可能2月只有28天。
附上代码:
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
NSLog(@"%ld",(long)[self howManyDaysInThisYear:2016 withMonth:1]);
NSLog(@"%ld",(long)[self howManyDaysInThisYear:2016 withMonth:2]);
NSLog(@"%ld",(long)[self howManyDaysInThisYear:2016 withMonth:3]);
NSLog(@"%ld",(long)[self howManyDaysInThisYear:2016 withMonth:4]);
NSLog(@"%ld",(long)[self howManyDaysInThisYear:2016 withMonth:5]);
NSLog(@"%ld",(long)[self howManyDaysInThisYear:2016 withMonth:6]);
NSLog(@"%ld",(long)[self howManyDaysInThisYear:2016 withMonth:7]);
NSLog(@"%ld",(long)[self howManyDaysInThisYear:2016 withMonth:8]);
}
#pragma mark - 获取某年某月的天数
- (NSInteger)howManyDaysInThisYear:(NSInteger)year withMonth:(NSInteger)month{
if((month == 1) || (month == 3) || (month == 5) || (month == 7) || (month == 8) || (month == 10) || (month == 12))
return 31 ;
if((month == 4) || (month == 6) || (month == 9) || (month == 11))
return 30;
if((year % 4 == 1) || (year % 4 == 2) || (year % 4 == 3))
{
return 28;
}
if(year % 400 == 0)
return 29;
if(year % 100 == 0)
return 28;
return 29;
}
相关文章
- 先生请出山新手阵容怎么搭配 新手阵容搭配推荐 09-19
- 王者荣耀体验服v10特权怎么获得-体验服贵族10免费领取攻略 09-19
- 卢希达起源新手阵容怎么搭配 新手阵容搭配推荐 09-19
- 盛世天下彩蛋挖掘机怎么触发 彩蛋挖掘机触发方法 09-19
- 银与绯尤里乌斯怎么样 尤里乌斯角色介绍 09-19
- 空洞骑士丝之歌白愈厅怎么进入 白愈厅进入方法 09-19