gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-30 03:30:25 25 4
gpt4 key购买 nike

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

我需要根据包含特定日期的字符串设置四个字符串(例如@"Apr 7, 2011"):

  • 表示星期几的字符串(缩写:Mon、Tue、Wed、Thu、Fri、Sat、Sun):例如@"星期四"
  • 一个将占用一天的字符串,例如@"7"
  • 一个代表月份的字符串,例如@"四月"
  • 和一个代表年份的字符串,例如@"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

最佳答案

永记,

你需要这样的东西:

    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

干杯,乔丹

关于iphone - objective-c:将日期字符串转换为星期几+月份名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5583984/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com