博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ios开发怎么获取输入的日期得到星期
阅读量:6327 次
发布时间:2019-06-22

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

+ (NSString*)weekdayStringFromDate:(NSDate*)inputDate {    NSArray *weekdays = [NSArray arrayWithObjects: [NSNull null], @"Sunday", @"周一", @"周二", @"周三", @"周四", @"周五", @"周六", nil];    NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];    NSTimeZone *timeZone = [[NSTimeZone alloc] initWithName:@"Asia/Shanghai"];    [calendar setTimeZone: timeZone];    NSCalendarUnit calendarUnit = NSWeekdayCalendarUnit;    NSDateComponents *theComponents = [calendar components:calendarUnit fromDate:inputDate];return [weekdays objectAtIndex:theComponents.weekday];}

 

转载地址:http://dzwoa.baihongyu.com/

你可能感兴趣的文章
django模板-自定义标签、过滤器
查看>>
Dreamweaver使用过程的小技巧
查看>>
2017年12月13日高级软件测试技术实践作业3
查看>>
session和cookie的介绍
查看>>
《Clean Code》 代码简洁之道
查看>>
Dictionary<TKey, TValue> 进行where的枚举遍历
查看>>
《我是一只IT小小鸟》读后感
查看>>
编辑文件 vi,vim的基本操作
查看>>
动态sql的两种执行方式execute-sp_executesql
查看>>
socket servlet webservice 区别及使用场景
查看>>
C++检测一个文件是否存在
查看>>
Linux学习之路(一)
查看>>
C-5 猜数字游戏
查看>>
使用 Gii 生成代码
查看>>
SQL三值逻辑
查看>>
ML 逻辑回归 Logistic Regression
查看>>
java开始到熟悉105-107
查看>>
VMware安装CentOS7后无法使用yum
查看>>
如何查看oracle用户具有的权限和角色
查看>>
Hibernate关联关系配置(一对多、一对一和多对多)
查看>>