如何在 Objective-c 中格式化日期 12/2/31 H, 2:21:41 AM?



这是我再次得到的2019年当前日期的日期。

12/2/31 H, 2:21:41 AM

谁能帮我如何将这个日期解析为 Objective-c 中的 NSDate 对象?

此日历格式属于日本日历。

要使用NSDateFormatter解析日期,您必须将H替换为Heisei并将日本日历实例分配给日期格式化程序。

NSString *dateString = [@"12/2/31 H, 2:21:41 AM" stringByReplacingOccurrencesOfString:@"H" withString:@"Heisei"];
NSCalendar *japanese = [[NSCalendar alloc] initWithCalendarIdentifier:NSCalendarIdentifierJapanese];
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
formatter.locale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US@calendar=japanese"];
formatter.calendar = japanese;
formatter.dateFormat = @"MM/d/yy G, h:mm:ss a";
NSDate *date = [formatter dateFromString:dateString];
NSLog(@"%@", date);

相关内容

  • 没有找到相关文章

最新更新