欢迎光临
我们一直在努力

DatePicker选择时间

建站超值云服务器,限时71元/月

DatePicker选择时间

项目介绍:

DatePicker

日期选择器,日期时间选择,时间选择器

更新了一些问题:最大最小时间设置问题,确定按钮颜色,年月日对齐方式,调用更加方便。
GitHub: https://github.com/Zws-China/DatePicker

PhotoShoot

这里写图片描述

How To Use


WSDatePickerView *datepicker = [[WSDatePickerView alloc] initWithDateStyle:DateStyleShowYearMonthDayHourMinute CompleteBlock:^(NSDate *startDate) {
NSString *date = [startDate stringWithFormat:@"yyyy-MM-dd HH:mm"];
NSLog(@"时间: %@",date);
[btn setTitle:date forState:UIControlStateNormal];

}];
datepicker.doneButtonColor = [UIColor purpleColor];//确定按钮的颜色
[datepicker show];



可设置的属性
@property (nonatomic,strong)UIColor *doneButtonColor;//按钮颜色
@property (nonatomic, retain) NSDate *maxLimitDate;//限制最大时间(默认9999-12-31 23:59)
@property (nonatomic, retain) NSDate *minLimitDate;//限制最小时间(默认   0-01-01 00:00)

弹框的类型

typedef enum{
DateStyleShowYearMonthDayHourMinute  = 0,    //年月日时分
DateStyleShowMonthDayHourMinute,    //月日时分
DateStyleShowYearMonthDay,    //年月日
DateStyleShowMonthDay,    //月日
DateStyleShowHourMinute    //时分

}WSDateStyle;

类型1(DateStyleShowYearMonthDayHourMinute)

这里写图片描述

类型2(DateStyleShowMonthDayHourMinute)

这里写图片描述

类型3(DateStyleShowYearMonthDay)

这里写图片描述

类型4(DateStyleShowMonthDay)

这里写图片描述

类型5(DateStyleShowHourMinute)

这里写图片描述

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » DatePicker选择时间
分享到: 更多 (0)