ios - 如何在 hh :mm:ss format? 中输入时间值
<p><p>我需要输入时间值 hh:mm:ss <code>(09:45:56)</code> 格式,但在 Xcode 文本字段中我总是得到 <code>(094556)</code>作为格式 -<br/>
如何解决?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您可以使用 <code>NSDateFormatter</code> 来解析任何自定义格式</p>
<pre><code>NSDateFormatter *dateformatter = [ init];
dateformatter.dateFormat = @"HH':'mm':'ss";
NSString *mydate = @"09:45:56"
NSDate *parseddate = ;
</code></pre>
<p>这应该给你一个“今天上午 9.45”的日期</p>
<p>NSDateFormatter 的文档非常好,但您可以在此处找到可能的特定格式化程序变体。它链接自苹果文档。</p>
<p> <a href="http://www.unicode.org/reports/tr35/tr35-19.html#Date_Format_Patterns" rel="noreferrer noopener nofollow">http://www.unicode.org/reports/tr35/tr35-19.html#Date_Format_Patterns</a> </p></p>
<p style="font-size: 20px;">关于ios - 如何在 hh :mm:ss format? 中输入时间值,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/12820159/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/12820159/
</a>
</p>
页:
[1]