2015-09-10 90 views

回答

1

您可以在按鈕操作中使用今天的日期調用日曆selectDate。如下:

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

當您點擊按鈕,這將滾動到今天與動畫和選擇它。

我希望這會有所幫助。

+0

我有2個數組作爲 - eventDateArray由事件NSDates與另一個數組作爲colouredDateArray讓NSDate被着色。我怎樣才能達到相同的目標?請回復。 https://github.com/WenchaoD/FSCalendar/issues/275 –

1

如果你想顯示今天的月份。

calendar.currentPage = [NSDate date]; 

如果你想 '選擇' 今天顯示今天月份

[calendar selectDate:[NSDate date]]; 
+0

我有2個數組作爲 - eventDateArray組成的事件NSDates&另一個數組作爲colouredDateArray NSDate的着色。我怎樣才能達到相同的目標?請回復。 https://github.com/WenchaoD/FSCalendar/issues/275 –

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]; 
} 

enter image description here