0

我是ios开发新手。

我正在使用 UIPickerView 制作自定义日期选择器。

我必须显示从今天到接下来 20 天的日期,我已完成生成这些日期并将它们分配给数组。这些日期的格式为:2013 年 10 月 16 日。

但我的问题是我想在 UIpickerView 上显示工作日(3 个字符)、月份和日期,即星期三、10 月 16 日。并且对于当前一周仅显示天数,即今天、明天、周五、周六、周日、周一、周二,下周将显示周三、10 月 23 日等等。

提前致谢!任何帮助将不胜感激!

4

1 回答 1

2

例如,假设您有一个名为 myDate 的 NSDate 对象,您需要使用日期格式化程序来格式化日期:

NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat setDateFormat:@"EEE, LLL d"];

NSString *myString = [dateFormat stringFromDate:myDate];

您可以在此处找到格式化程序及其含义:

NSDateFormatter 格式化

今天得到:

NSdate *today = [NSDate date];

明天:

NSDate *tomorrow = [NSDate dateWithTimeInterval:(24*60*60) sinceDate:[NSDate date]]

明天之后:

NSDate *afterTomorrow = [NSDate dateWithTimeInterval:(24*60*60) sinceDate:tomorrow]
于 2013-10-16T10:32:14.200 回答