iOS 15.4 在12小時制下 HH:mm:ss 明明設置成了24小時進制,最后出來的還是12小時制結果。
解決方案
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];
// 強制所屬地區(qū)
dateFormatter.locale = [[NSLocale alloc] initWithLocaleIdentifier:@"zh_Hans_CN"];
// 或者dateFormatter.locale = [NSLocale systemLocale];
//強制設置日歷格式
dateFormatter.calendar = [[NSCalendar alloc]initWithCalendarIdentifier:NSCalendarIdentifierISO8601];