菜鸟教程小白 发表于 2022-12-13 04:03:22

ios - NSTimeZone 值和语言环境


                                            <p><p>我有时区:OS X 中的中欧夏令时间(自动根据位置)。在模拟器上运行我的代码时,我得到了这些结果:</p>

<pre><code>NSTimeZone *tz = ; // Gives me Local Time Zone (Europe/Warsaw (CEST) offset 7200 (Daylight))

NSString *tzString = [tz localizedName:NSTimeZoneNameStyleShortStandard
                              locale:]; // Gives me CET
</code></pre>

<p>与 EDT/EST 相同 - 当我在系统中将当前时间设置为 EDT 时 -> 首选项然后适当的方法返回 EST.. </p>

<p>我错过了什么吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><code>NSTimeZoneNameStyleShortStandard</code> 中的<code>Standard</code> 特指时区的非DST 名称。 </p>

<p>如果您想根据某个日期的 DST 状态使用或不使用 DST 名称,您可能必须使用 <code>-isDaylightSavingTimeForDate:</code> 来决定 <code>NSTimeZoneNameStyleShortStandard</code>与 <code>NSTimeZoneNameStyleShortDaylightSaving</code>.</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - NSTimeZone 值和语言环境,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/18697448/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/18697448/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - NSTimeZone 值和语言环境