k06a / ABCalendarPicker

Fully configurable iOS calendar UI component with multiple layouts and smooth animations.
MIT License
710 stars 119 forks source link

How to configure calendar range? #19

Closed hepengzhang closed 11 years ago

hepengzhang commented 11 years ago

Hi,

I'm just wondering if there's anyway to config calendar range. For example, I just want to show calendar from May 16 2013 to May 16 2014? Thanks.

Hepeng

k06a commented 11 years ago

You can disable going out of range in delegate. I see one missing method in delegate:

- (BOOL)calendarPicker:(ABCalendarPicker*)calendarPicker
       shoudSelectDate:(NSDate*)date
             withState:(ABCalendarPickerState)state;
hepengzhang commented 11 years ago

Yes, this works for me! Thanks! My initial idea is to forbid scroll out of range.

k06a commented 11 years ago

Just added this method to delegate

hepengzhang commented 11 years ago

Oh I see. Thanks!!