菜鸟教程小白 发表于 2022-12-12 16:59:52

ios - 一周工作日的EKRecurrenceRule


                                            <p><p>我正在创建能够将事件添加到 iPhone 日历中的简单应用程序。所以我在玩 EKEvent 的recurrenceRule。有一个类 EKRecurrenceRule 的构造函数很长:</p>

<pre><code>(id)initRecurrenceWithFrequency:(EKRecurrenceFrequency)
                   typeinterval:(NSInteger)interval
                  daysOfTheWeek:(NSArray *)days
               daysOfTheMonth:(NSArray *)monthDays
                monthsOfTheYear:(NSArray *)months
               weeksOfTheYear:(NSArray *)weeksOfTheYear
                  daysOfTheYear:(NSArray*)daysOfTheYear
                   setPositions:(NSArray *)setPositions
                            end:(EKRecurrenceEnd*)end
</code></pre>

<p>因此,例如,如果我试图创建一个将在一周中的每个工作日(星期日除外)重复的事件,我将使用这个初始化:</p>

<pre><code>initRecurrenceWithFrequency:EKRecurrenceFrequencyDaily
                   interval:1
            daysOfTheWeek:[NSArray arrayWithObjects:
                              ,
                              ,
                              ,
                              ,
                              ,
                              , nil]
            daysOfTheMonth:nil
         monthsOfTheYear:nil
            weeksOfTheYear:nil
             daysOfTheYear:nil
            setPositions:nil
                     end:nil
</code></pre>

<p>但它不起作用,它只是每天重复事件:S
当我尝试使用 EKRecurrenceFrequencyMonthly 时,它可以工作。它每个月都会重复事件,但不是在星期日。我向 Apple 报告了错误,因为他们似乎有错误。</p>

<p>或者你有其他想法?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p> <a href="http://developer.apple.com/library/ios/#documentation/DataManagement/Conceptual/EventKitProgGuide/CreatingRecurringEvents/CreatingRecurringEvents.html#//apple_ref/doc/uid/TP40009765-CH3-SW1" rel="noreferrer noopener nofollow" title="Creating a Complex Recurrence Rule">Creating A Complex Recurrence Rule</a> </p>

<p><em>“星期几。对于除每日重复规则之外的所有重复规则,您可以提供一个 EKRecurrenceDayOfWeek 对象数组,这些对象指示事件发生的星期几。
例如,您可以提供一个包含 EKRecurrenceDayOfWeek 对象的数组,该对象的星期几值为 EKTuesday 和 EKFriday,以创建每周二和周五发生的重复。"</em></p>

<p>换句话说,您要做的是使用星期一到星期五,然后每周重复一次。每天重复周一到周五是没有意义的。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 一周工作日的EKRecurrenceRule,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/6976304/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/6976304/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 一周工作日的EKRecurrenceRule