Greetings,
I would like to know if there is an event fired when the user selects a time slot in both Week and Day CalendarTypes. If not, is there another way to handle such a selection?
I am interested in allowing the user to quickly add an event at that datetime on touch up.
Thank you for your time,
vagg
Hi Vagg,
Yes, the IGCalendarViewDelegate has two options:
-(void)calView:(IGCalendarView*)calView hourTapped:(CGFloat)hour forDate:(NSDate*)date;
-(void)calView:(IGCalendarView*)calView hourPressed:(CGFloat)hour forDate:(NSDate*)date;
You can only use one of them at a time, but they work for both the WeekView and DayView.
Hope this helps,
-SteveZ
Hi Steve,
That worked perfectly, thank you.