菜鸟教程小白 发表于 2022-12-13 10:09:38

ios - 在 iOS 中解析 ISO8601 时间的问题


                                            <p><p>我正在尝试将此字符串“2011-11-23T17:59:00Z”转换为 NSDate。</p>

<p>我见过很多人有这个问题,但每个人的格式略有不同。我无法破解解决方案。 </p>

<p>我试过这样的代码:</p>

<pre><code>NSDateFormatter *dateFormat = [ init];
dateFormat.timeStyle = NSDateFormatterFullStyle;
;
NSString* date = &#34;&#34;2011-11-23T17:59:00Z&#34;&#34;;
NSString *dateString = ;
</code></pre>

<p>dateString 总是返回 NULL</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>NSDateFormatter stringFromDate 接受一个 NSDate 对象,而您正在向它传递一个字符串。
<a href="http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSDateFormatter_Class/Reference/Reference.html" rel="noreferrer noopener nofollow">http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSDateFormatter_Class/Reference/Reference.html</a> </p>

<p>试试 NSDateFormatter dateFromString。</p>

<p>如果你使用 dateFromString:</p>

<pre><code>NSDateFormatter *dateFormat = [ init];
;
NSString* dateStr = @&#34;2011-11-23T17:59:00Z&#34;;
NSDate *date = ;

NSLog(@&#34;date: %@&#34;, date);
</code></pre>

<p>输出:</p>

<pre><code>2011-12-14 00:34:57.587 Craplet date: 2011-11-23 22:59:00 +0000
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 iOS 中解析 ISO8601 时间的问题,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/8499619/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/8499619/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 iOS 中解析 ISO8601 时间的问题