kamilpowalowski/HSDatePickerViewController

Set min and max date

saintjab opened this issue · 2 comments

Great library here. Is there a way to set the min and max date just like DateTimePicker? Thanks

Thanks. There are two properties:

/**
 *  Minimum avaiable date on picker
 */
@property (nonatomic, strong) NSDate *minDate;
/**
 *  Maximum avaiable date on picker
 */
@property (nonatomic, strong) NSDate *maxDate;

Thanks, its works 👍