gpt4 book ai didi

ios - NSLocale 大部分是空的——属性在哪里?

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:19:44 24 4
gpt4 key购买 nike

我真的只是想知道用户是否将iPhone设置为12小时模式进行时间显示。

NSLocale 类似乎在描述(用模糊的、不具体的术语,没有任何示例或明显有用的方法)我所追求的。

所以我创建了一些 NSLocale 对象,如下所示:

NSLocale *systemLocaleApparently = [NSLocale systemLocale];
NSLocale *currentLocaleWithLotsOfGoodies = [NSLocale autoupdatingCurrentLocale];

当我使用调试器或 NSLog() 检查这些对象时,我能得到的最好结果是:

<CFLocale 0x1278e0 [0x382084f8]>{type = system, identifier = ''} 

当前语言环境中有一个 ID 字符串,但没有其他内容。

从文档中,我可以从区域设置中查找值,其中之一是 NSCalendar 对象。所以我把它拿回来看了一下,它告诉我它是“公历”。

所有这些显然对某些人有用...但我真正想要的是一个很好的大字典,其中包含显示所有实际系统属性的属性,主要是为了让我的 NSDateFormatters 不即使我强制格式化程序使用 en_US_POSIX 语言环境和固定的 setDate 格式,当用户选择 12 小时格式时也不会继续爆炸。

(我确信 NSCalendarDate 从来没有遇到过这些问题...)

希望我遗漏了一些明显(并且可能令人尴尬)明显的东西,但也许有人会与我分享。请 :)

最佳答案

这是判断用户是否已将时间格式设置为 12 小时或 24 小时格式的一种方法:

NSDateFormatter* formatter = [[[NSDateFormatter alloc] init] autorelease];
[formatter setTimeStyle:NSDateFormatterMediumStyle];
// Look for H (24-hour format) vs. h (12-hour format) in the date format.
NSString* dateFormat = [formatter dateFormat];
BOOL using24HourClock = [dateFormat rangeOfString:@"h"].location == NSNotFound;

关于ios - NSLocale 大部分是空的——属性在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1447196/

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