ios - 不考虑时间比较 NSDates
<p><div>
<aside class="s-notice s-notice__info post-notice js-post-notice mb16"role="status">
<div class="d-flex fd-column fw-nowrap">
<div class="d-flex fw-nowrap">
<div class="flex--item wmn0 fl1 lh-lg">
<div class="flex--item fl1 lh-lg">
<b>这个问题在这里已经有了答案</b>:
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>根据经验,当您比较或操作 <code>NSDate</code> 时,适合该工作的工具通常是 <code>NSCalendar</code> 和 <code>NSDateComponents</的组合</code>.</p>
<p>仅在需要格式化和显示 <code>NSDate</code> 时使用 <code>NSDateFormatter</code>。</p>
<p>考虑到这一点,<code>NSDateComponents</code> 是可行的方法,因为您想比较两个日期的组件子集。</p>
<p>创建两个 <code>NSDateComponents</code> 实例并比较它们。</p>
<p>例子:</p>
<pre><code>- (BOOL)isToday:(NSDate *)date {
NSDateComponents *todayComponents = [ components:NSDayCalendarUnit | NSMonthCalendarUnit | NSYearCalendarUnit
fromDate:];
NSDateComponents *dateComponents = [ components:NSDayCalendarUnit | NSMonthCalendarUnit | NSYearCalendarUnit
fromDate:date];
return ;
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 不考虑时间比较 NSDates,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/19744384/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/19744384/
</a>
</p>
页:
[1]