概述
-<span style="font-size:18px;"> (void)getYearMonthDay {
//获取系统当前的时间
NSDate * senddate=[NSDate date];
NSCalendar *cal=[NSCalendar currentCalendar];
NSUInteger unitFlags= NSCalendarUnitYear|NSCalendarUnitMonth|NSCalendarUnitDay|NSCalendarUnitHour|NSCalendarUnitMinute|NSCalendarUnitSecond|NSCalendarUnitWeekday|NSCalendarUnitWeekOfMonth|NSCalendarUnitWeekOfYear|NSCalendarUnitWeekday;
NSDateComponents *conponent= [cal components:unitFlags fromDate:senddate];
//获取年、月、日
NSInteger year = [conponent year];
NSInteger month = [conponent month];
NSInteger day = [conponent day];
//获取时、分、秒
NSInteger hour = [conponent hour];
NSInteger minute = [conponent minute];
NSInteger second = [conponent second];
//一年中的第几周
NSInteger weekOfYear = [conponent weekOfYear];
NSInteger weekOfMonth = [conponent weekOfMonth];
NSInteger weekday = [conponent weekday];
NSLog(@"%ld%ld%ld%ld%ld%ld%ld%ld%ld",year,month,day,hour,minute,second,weekOfYear,weekOfMonth,weekday);
}</span>
最后
以上就是爱听歌老师为你收集整理的IOS 获取年月日时分秒星期的全部内容,希望文章能够帮你解决IOS 获取年月日时分秒星期所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复