背景
最近做項(xiàng)目涉及到12小時/24小時制切換的問題皱坛,網(wǎng)上有一些現(xiàn)成判斷算法黍氮,但是在涉及到語言和地區(qū)切換的時候都會存在問題。因此自己研究了一番岛请,終于找到了相對完美的方案。
問題
算法一:
+ (BOOL)is12HourFormat{
NSString *formatStringForHours = [NSDateFormatter dateFormatFromTemplate:@"j" options:0 locale:[NSLocale currentLocale]];
NSRange containsA =[formatStringForHours rangeOfString:@"a"];
BOOL hasAMPM =containsA.location != NSNotFound;
return hasAMPM;
}
這是網(wǎng)上最主流的算法幢踏,但是在日語等區(qū)域的時候就會失效髓需,比如日語區(qū)無論時間是12還是24小時制formatStringForHours始終為"H時",其他地區(qū)沒仔細(xì)測試了许师。
算法二:
+ (BOOL)is12HourFormat{
NSLocale *local = [NSLocale autoupdatingCurrentLocale];
NSCalendar *calendar = [NSCalendar autoupdatingCurrentCalendar];
calendar.locale = local;
NSString *amSymbol = [calendar AMSymbol];
NSString *pmSymbol = [calendar PMSymbol];
NSString *dateStr = [[NSDate date] descriptionWithLocale:local];
// NSLog(@"dateStr:%@-amSymbol:%@-pmSymbol:%@",dateStr,amSymbol,pmSymbol);
BOOL is12Hour = NO;
for (NSString *symbol in @[amSymbol,pmSymbol]) {
if ([dateStr rangeOfString:symbol].location != NSNotFound) {
is12Hour = YES;
break;
}
}
return is12Hour;
}
這個算法是我參考網(wǎng)上一個算法改進(jìn)的房蝉,講道理我覺得這個算法邏輯沒什么問題僚匆,但是NSString *dateStr = [[NSDate date] descriptionWithLocale:local]
獲取到的描述有時候跟amSymbol
pmSymbol
對不上。而且[NSLocale autoupdatingCurrentLocale]
[NSLocale currentLocale]
好像都不能及時獲取到local的更改搭幻,測試過程中好幾次都是獲取到上一次的loacl值咧擂。
終極方案
在測試過程中,雖然一檀蹋、二算法都存在問題松申,但是發(fā)現(xiàn)iOS狀態(tài)欄上顯示時間的是能根據(jù)是否12小時制及時切換的,也不存在語言地區(qū)問題俯逾,不知道為什么iOS不像Android那樣有提供這個的系統(tǒng)api贸桶。
既然狀態(tài)欄能實(shí)時切換,那么如果獲取到狀態(tài)的時間的字符串桌肴,那么這個問題就迎刃而解了皇筛。
+ (BOOL)is12HourFormat{
UIApplication *app = [UIApplication sharedApplication];
NSString *timeStrValue = nil;
@try {
if (isNotchMobile) {
id statusBar = [[app valueForKeyPath:@"statusBar"] valueForKeyPath:@"statusBar"];
id data = [statusBar valueForKeyPath:@"currentData"];
id timeEntry = [data valueForKeyPath:@"timeEntry"];
timeStrValue = [timeEntry valueForKeyPath:@"stringValue"];
}else{
id statusBar = [app valueForKeyPath:@"statusBar"];
NSArray *subviews = [[statusBar valueForKeyPath:@"foregroundView"] subviews];
id statusBarTimeItemView = nil;
for (id subview in subviews) {
if ([subview isKindOfClass:NSClassFromString(@"UIStatusBarTimeItemView")]) {
statusBarTimeItemView = subview;
}
}
if (@available(iOS 12.0, *)) {
timeStrValue = [statusBarTimeItemView valueForKeyPath:@"dateTimeString"];
}else{
timeStrValue = [statusBarTimeItemView valueForKeyPath:@"timeString"];
}
}
} @catch (NSException *exception) {
} @finally {
if (!timeStrValue) {
return 算法一或算法二的結(jié)果;
}
}
// 判斷是否字符串中只存在數(shù)字、空格坠七、冒號水醋,如果是則表示為24小時制,否則為12小時制(存在AM/PM/下午/上午等內(nèi)容)
NSCharacterSet *numberSet = [[NSCharacterSet characterSetWithCharactersInString:@"0123456789 :"] invertedSet];
NSString *filtered = [[timeStrValue componentsSeparatedByCharactersInSet:numberSet] componentsJoinedByString:@""];
BOOL is12Hour = ![timeStrValue isEqualToString:filtered];
return is12Hour;
}
#define isNotchMobile ([UIScreen instancesRespondToSelector:@selector(currentMode)] ? (CGSizeEqualToSize(CGSizeMake(1125, 2436), [[UIScreen mainScreen] currentMode].size)||CGSizeEqualToSize(CGSizeMake(1242, 2688), [[UIScreen mainScreen] currentMode].size)||CGSizeEqualToSize(CGSizeMake(828, 1792), [[UIScreen mainScreen] currentMode].size)) : NO)