在美国地区使用应用程序时,我需要对以下日期进行格式化:1 月 1 日、7 月 2 日、11 月 28 日
我该怎么做?
使用 NSDateFormatter 进行搜索,但我无法设置合适的格式且默认格式太长。
Best Answer-推荐答案 strong>
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/
|