CXDatePickerView icon indicating copy to clipboard operation
CXDatePickerView copied to clipboard

一个自定义的日期时间选择器

Results 7 CXDatePickerView issues
Sort by recently updated
recently updated
newest added

iOS14.3 在模拟器上运行demo,选择月-日-时-分弹出的日期单位重复

![image](https://user-images.githubusercontent.com/16893771/129004874-ad434f9e-8736-428f-af49-4ad67973f775.png)

iOS14中,设置隐藏分割线的时候,数组越界。因为iOS14 的UIPickerView的子视图层次改变了。 ``` if (_hideSegmentedLine) { ((UIView *)[self.datePicker.subviews objectAtIndex:1]).backgroundColor = [UIColor clearColor]; ((UIView *)[self.datePicker.subviews objectAtIndex:2]).backgroundColor = [UIColor clearColor]; } ``` iOS14 的数据选择器不再有分割线了。它现在 从一个选中行的两条分割线 改成了一个圆角的遮罩视图。 为了兼容老版本建议改成 ``` if(_hideSegmentedLine) { for (UIView...

当设置了maxLimitDate和minLimitDate的时候,可以设置不展示除极限值以外的时间吗,现在这个是当越过了极限时间会自动回弹。