菜鸟教程小白 发表于 2022-12-13 01:33:00

iphone - ios中的NSDate转换


                                            <p><p>我得到一个 <code>NSString Sun Feb 24 2013 00:00:00 GMT+0530 (India Standard Time)</code> 我想要 </p>

<p>将其转换为 ios 中的 <code>dd-mm-yy</code> 。这就是我尝试过的没有得到输出的方法</p>

<p>想要。将字符串转换为日期对象:</p>

<pre><code> NSString*dateStr = @&#34;Sun Feb 24 2013 00:00:00 GMT+0530 (India Standard Time) &#34; ;
    NSDateFormatter *dateFormat = [ init];
    ;
    NSDate *date = ;   
    NSDateFormatter *df = [ init];
    ;
    NSDate *myDate = ;
</code></pre>

<p>提前致谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><pre><code> NSDateFormatter *sdateFormatter = [ init];
sdateFormatter.locale = [ initWithLocaleIdentifier:@&#34;en_US&#34;];
;
NSDate *sdate = ;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - ios中的NSDate转换,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/15402457/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/15402457/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - ios中的NSDate转换