how to customise FSCalendar

user5276912 picture user5276912 · Sep 10, 2015 · Viewed 13.6k times · Source

I am using FSCalendar https://github.com/WenchaoIOS/FSCalendar I have a button in my VC and FSCalendar in UIView If I click on the button I need to show Current date(some thing like google calendar app) how can I do this ?

Answer

Ismail picture Ismail · Oct 9, 2015

You can call the calendar selectDate with today's date in the button action. like below:

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

When you tap the button this will scroll to today with animation and select it.

I hope this helps.