gpt4 book ai didi

iOS 日期格式

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:22:31 28 4
gpt4 key购买 nike

在使用美国语言环境的应用程序时,我需要格式化以下日期:1 月 1 日、7 月 2 日、11 月 28 日

我应该怎么做?

使用 NSDateFormatter 进行搜索,但我无法设置合适的格式,而且默认格式太长。

最佳答案

NSDateFormatter *format = [[NSDateFormatter alloc] init];
[format setDateFormat:@"MMMM dd'st'"];

NSDate *now = [[NSDate alloc] init];

NSString *dateString = [format stringFromDate:now];
NSLog(@"%@",dateString);

这将为您提供所需的格式,但您需要添加一些条件以添加正确的“st”、“nd”、“rd”等。 like this

对你有帮助吗

NSDateFormatter *format = [[NSDateFormatter alloc] init];
[format setDateFormat:@"MMMM dd"];

NSDate *now = [[NSDate alloc] init];

NSString *dateString = [format stringFromDate:[now dateByAddingTimeInterval:(-60*60*24*10)]];
NSMutableString *tempDate = [[NSMutableString alloc]initWithString:dateString];
int day = [[tempDate substringFromIndex:[tempDate length]-2] intValue];
switch (day) {
case 1:
**case 21:
case 31:**
[tempDate appendString:@"st"];
break;
case 2:
**case 22:**
[tempDate appendString:@"nd"];
break;
case 3:
**case 23:**
[tempDate appendString:@"rd"];
break;
default:
[tempDate appendString:@"th"];
break;
}
NSLog(@"%@",tempDate);

关于iOS 日期格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10103654/

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