菜鸟教程小白 发表于 2022-12-13 10:45:03

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 &#39;NSDateComponents *__string&#39; with an expression of type...&#39;
</code></pre>

<p>还有错误:</p>

<pre><code>Implicit conversion of &#39;NSInteger&#39; (aka &#39;long&#39;) to &#39;NSDateComponents *&#39; 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]
查看完整版本: ios - 使用 NSDateComponents 获取当前日期时出错