Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以创建具有不同开始日期和时间以及结束日期和时间的活动?
例子
start date is 2021-04-15 23:00 end date is 2021-04-16 02:00
是的,有可能。
如果事件发生在给定日期,则在您的 DataSource 方法func eventsForDate(_ date: Date) -> [EventDescriptor]中将事件包含在返回的数组中。
func eventsForDate(_ date: Date) -> [EventDescriptor]
例如,如果事件在 1 月 1 日 15:00 开始并在 1 月 3 日 16:30 结束,则您需要在 1 月 1 日、2 日和 3 日的有效负载中返回该事件。
CK 应该处理事件的布局和显示。