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

ios - 将日期字符串(2016-04-27T08 :06:07. 531Z) 转换为特定日期格式 dd.MM.YYYY


                                            <p><p>我有格式为 2016-04-27T08:06:07.531Z 的日期字符串,并希望转换为 2016.04.27。我试过下面的代码</p>

<pre><code>NSString *dateString = @&#34;2016-04-27T08:06:07.531Z&#34;;

NSDateFormatter *dateFormatter = [ init];
;

NSDate *dateReceived = ;
;

NSString *dateReq = ;

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

<p>我在 NSLog 的控制台中得到空值。任何帮助将不胜感激。谢谢。 </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>使用喜欢</p>

<pre><code>NSString *dateString = @&#34;2016-04-27T08:06:07.531Z&#34;;
NSDateFormatter *dateFormatter = [ init];

;

NSDate *dateReceived = ;
                           // 2016.04.27
;

NSString *dateReq = ;

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

<p> <a href="/image/YCn3v.png" rel="noreferrer noopener nofollow"><img src="/image/YCn3v.png" alt="enter image description here"/></a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 将日期字符串(2016-04-27T08 :06:07. 531Z) 转换为特定日期格式 dd.MM.YYYY,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/36907651/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/36907651/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 将日期字符串(2016-04-27T08 :06:07. 531Z) 转换为特定日期格式 dd.MM.YYYY