ios - 使用 NSDateComponents 获取当前日期时出错
<p><p>我正在尝试使用 <code>NSDateComponents</code> 获取当前日期。 (然后我将更改周数、月数等。)这是代码:</p>
<pre><code>NSCalendar *calendar = [ initWithCalendarIdentifier:NSCalendarIdentifierGregorian];
NSDateComponents *components = [calendar component:(NSCalendarUnitCalendar |
NSCalendarUnitYear |
NSCalendarUnitMonth |
NSCalendarUnitDay) fromDate:];
</code></pre>
<p><code>Xcode</code> 给我以下警告:</p>
<pre><code>Incompatible integer to pointer conversion initializing 'NSDateComponents *__string' with an expression of type...'
</code></pre>
<p>还有错误:</p>
<pre><code>Implicit conversion of 'NSInteger' (aka 'long') to 'NSDateComponents *' is disallowed with ARC
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您正在调用 <code>component</code> 方法(返回单个数字组件值),并且您打算调用 <code>components</code> (返回完整的 <code>NSDateComponents</code>对象)。</p></p>
<p style="font-size: 20px;">关于ios - 使用 NSDateComponents 获取当前日期时出错,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/30158627/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/30158627/
</a>
</p>
页:
[1]