Hi, i have included a calendar view in my app.
With the delegate i lock the view in IGCalendarViewDisplayTypeMonth, is possible to lock the scrolling to prevent the user to change the month?
More importantly, I have to add a label to the cell (to show a daily value), how can I do?
Thanks!!
Mattia
Hi Mattia,
You can lock what gets scrolled by year. There is a maxYear and minYear property. So, for example, if you set them both to 2014 you'd be locked to those 12 months, but you can't lock it by month.
Currently you can only display appointments in the months. So your best option right now is to have custom appointments be displayed to show your daily values.
-SteveZ
thanks SteveZ!