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 = @"Sun Feb 24 2013 00:00:00 GMT+0530 (India Standard Time) " ;
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:@"en_US"];
;
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]