objective-c:将日期字符串转换为星期几+月份名称

时间:2011-04-07 15:57:29

标签: iphone objective-c cocoa-touch datetime

初学者的问题,但我想知道是否有人可以帮助我:

我需要根据包含特定日期的字符串设置四个字符串(例如@“2011年4月7日”):

  • 一个字符串,它将采用星期几(缩写:周一,周二,周三,周四,周五,周六,周日):例如@"Thu"
  • 一个需要一天的字符串,例如@"7"
  • 一个需要一个月的字符串,例如@"April"
  • 和一个需要一年的字符串,例如@"2011"

到目前为止,我发现了这个:

    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setTimeStyle:NSDateFormatterNoStyle];
[dateFormatter setDateStyle:NSDateFormatterMediumStyle];

NSDate *date = [NSDate dateWithTimeIntervalSinceReferenceDate:118800];

NSLocale *usLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"];
[dateFormatter setLocale:usLocale];

NSLog(@"Date for locale %@: %@",
      [[dateFormatter locale] localeIdentifier], [dateFormatter stringFromDate:date]);
// Output:
// Date for locale en_US: Jan 2, 2001

所以这会给我一个特定的格式化日期。然而,我想知道如何访问这个日期的某些部分。有 - (NSArray *)weekdaySymbols但我不知道如何使用这个,文档非常节俭。

非常欢迎来自日历专家的任何提示。


修改

我想这是解决方案的一部分:

    NSLocale *gbLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_GB"];
NSString *gbFormatString = [NSDateFormatter dateFormatFromTemplate:@"EdMMM" options:0 locale:gbLocale];
NSLog(@"gbFormatterString: %@", gbFormatString);
// Output: gbFormatterString: EEE d MMM, e.g. Thu 7 Apr

3 个答案:

答案 0 :(得分:25)

n.evermind,

你需要这样的东西:

    NSDate *date = [NSDate date];
    NSDateFormatter *formatter = [[[NSDateFormatter alloc] init] autorelease];
    [formatter setDateFormat:@"MMM dd, yyy"];
    date = [formatter dateFromString:@"Apr 7, 2011"];
    NSLog(@"%@", [formatter stringFromDate:date]);

    NSCalendar *calendar = [NSCalendar currentCalendar];
    NSInteger units = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSWeekdayCalendarUnit;
    NSDateComponents *components = [calendar components:units fromDate:date];
    NSInteger year = [components year];
    NSInteger month=[components month];       // if necessary
    NSInteger day = [components day];
    NSInteger weekday = [components weekday]; // if necessary

    NSDateFormatter *weekDay = [[[NSDateFormatter alloc] init] autorelease];
    [weekDay setDateFormat:@"EEE"];

    NSDateFormatter *calMonth = [[[NSDateFormatter alloc] init] autorelease];
    [calMonth setDateFormat:@"MMMM"];

    NSLog(@"%@ %i %@ %i", [weekDay stringFromDate:date], day, [calMonth stringFromDate:date], year );

输出

2011-04-07 12:49:23.519 test[7296:207] Apr 07, 2011
2011-04-07 12:49:23.521 test[7296:207] Thu 7 April 2011

干杯,乔丹

答案 1 :(得分:0)

您应该查看NSDateFormatter

答案 2 :(得分:0)

@ n.evermind

您实际应该查看NSCalendar,特别是- components:fromDate方法,该方法为您提供了NSDateComponents对象,该对象具有您想要的所有颜色。