手机
当前位置:查字典教程网 >编程开发 >IOS开发 >IOS获取指定年月的当月天数
IOS获取指定年月的当月天数
摘要:前言在开发IOS中常常需要用到这一功能,在限定一个月的时间间隔为第一天和最后一天,需要知道这个月有多少天,才能知道最后一天是多少号,而且还要...

前言

在开发IOS中常常需要用到这一功能,在限定一个月的时间间隔为第一天和最后一天,需要知道这个月有多少天,才能知道最后一天是多少号,而且还要知道是否是闰年,可能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; }

总结

以上就是IOS获取指定年月的当月天数的全部内容,希望本文的内容对大家开发IOS能有所帮助。

【IOS获取指定年月的当月天数】相关文章:

iOS开发中UISwitch按钮的使用方法简介

iOS如何获取手机的Mac地址

判断iOS应用是否开放HTTP权限的方法

ios 获取汉字拼音的方法比较

iOS应用开发中使用NSLocale类实现对象信息的本地化

iOS App开发中通过UIDevice类获取设备信息的方法

IOS开发实现录音功能

Objective-C实现自定义的半透明导航

iOS仿擦玻璃效果的实现方法

iOS应用程序之间的几种跳转情况详解

精品推荐
分类导航