ios - Cocoa touch如何将标签设置为NSDate
<p><p>我有一个名为 datelabel 的标签,我想在我的 AppDelgate 中将它设置为一个名为 dateofbirth 的 NSDate。</p>
<p>我已经定义并导入了我的 AppDelgate 并将其设置为 appDelgate,但是当我尝试 <code>self.datelabel.text = appDelgate.dateofbirth</code></p>
<p>但是当我把它放进去时,我的这个错误 <code>Incompatible pointer types assignmenting to 'NSString *' from 'NSDate *'</code></p>
<p>我尝试了一些方法,但都没有奏效。 </p>
<p>有没有办法为 NSDate 设置标签。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您需要将 <code>NSDate</code> 转换为 <code>NSString</code>。您可以为此使用 <code>NSDateFormatter</code>。</p>
<pre><code>NSDateFormatter *formatter = [ init];
// you can use one of the builtin localizated formats
;
;
self.datelabel.text = ;
// or you can set your own format
;
self.datelabel.text = ;
</code></pre></p>
<p style="font-size: 20px;">关于ios - Cocoa touch如何将标签设置为NSDate,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/19745006/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/19745006/
</a>
</p>
页:
[1]