菜鸟教程小白 发表于 2022-12-13 11:11:19

ios - 从 12 小时格式到 24 小时格式的时间转换


                                            <p><p>我编写了以下代码将时间从 12 小时格式转换为 24 小时格式。它适用于模拟器,但在使用设备时它返回 null。</p>

<pre><code>NSDateFormatter *dateFormatter = [ init];
dateFormatter.dateFormat =@&#34;hh:mm a&#34;;
NSString * endTimeString= objectForKey:@&#34;EndTime&#34;]];
NSLog(@&#34;Endtime from server responce:%@&#34;,endTimeString);
NSDate *date = ;
dateFormatter.dateFormat = @&#34;HH:mm&#34; ;
NSString *pmamDateString = ;
NSLog(@&#34;Converted EndTime:%@ &#34;,pmamDateString);
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>尝试在您的 <code>NSDateFormatter</code> 上设置语言环境:</p>

<pre><code>NSDateFormatter *dateFormatter = [ init];
NSLocale *locale = [ initWithLocaleIdentifier:@&#34;en_US_POSIX&#34;];
;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 从 12 小时格式到 24 小时格式的时间转换,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32842879/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32842879/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 从 12 小时格式到 24 小时格式的时间转换