菜鸟教程小白 发表于 2022-12-12 16:06:29

ios - 获取本月的第一个星期一


                                            <p><p>我想测试一下今天是不是每个月的第一个星期一。我正在这样做:</p>

<pre><code>NSCalendar *gregorianCalendar = [ initWithCalendarIdentifier:NSCalendarIdentifierGregorian];
NSDate *today = ;
NSInteger weekdayOfDate = ;

if (weekdayOfDate == 2)
{   
   // Monday
}
</code></pre>

<p>但是这个代码在每个月的每个星期一都是正确的。我怎样才能得到每月的第一个星期一?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您需要添加条件检查我们当前是否在该月的前 7 天。但是,还请注意,从 iOS8 开始,您使用的某些值已被弃用。我添加了完整版本的代码,包括对已弃用值的替换:</p>

<pre><code>NSCalendar *gregorianCalendar = [ initWithCalendarIdentifier:NSCalendarIdentifierGregorian];
NSDate *today = ;
NSInteger weekdayOfDate = ;
NSInteger dayOfMonth = ;

if (weekdayOfDate == 2 &amp;&amp; dayOfMonth &lt;= 7)
{
    // This is the first Monday of this month
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 获取本月的第一个星期一,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32201144/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32201144/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 获取本月的第一个星期一