3

我正在使用 FSCalendar https://github.com/WenchaoIOS/FSCalendar 我在我的 VC 中有一个按钮,在 UIView 中有 FSCalendar 如果我单击该按钮,我需要显示当前日期(类似于谷歌日历应用程序)我该怎么做这个 ?

4

3 回答 3

1
Button Action:    

- (void)backToToday {
// scroll to page date
self.currentPageDate = self.today;
// default selected date
self.selectedDate = self.today;

self.calendar.currentPage = self.currentPageDate;
[self.calendar selectDate:self.selectedDate scrollToDate:NO];
}

在此处输入图像描述

于 2017-10-12T11:17:45.643 回答
1

您可以在按钮操作中使用今天的日期调用日历 selectDate。如下所示:

NSDate *today = [NSDate date];
[calendar setDate: today];

当您点击按钮时,它将滚动到带有动画的今天并选择它。

我希望这有帮助。

于 2015-10-09T09:36:43.983 回答
1

如果要显示今天的月份。

 calendar.currentPage = [NSDate date]; 

如果您想“选择”今天并显示今天的月份

[calendar selectDate:[NSDate date]];
于 2015-10-27T01:29:55.303 回答