本篇文章给大家分享的是有关怎么在iOS中自定义一个日期选择器,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。
.h文件解析
选择日期选择器样式
typedef enum{ DateStyleShowYearMonthDayHourMinute = 0, DateStyleShowMonthDayHourMinute, DateStyleShowYearMonthDay, DateStyleShowMonthDay, DateStyleShowHourMinute }XHDateStyle; //日期选择器样式 @property (nonatomic,assign)XHDateStyle datePickerStyle;
DateStyleShowYearMonthDayHourMinute :显示年月日时分
DateStyleShowMonthDayHourMinute : 显示月日时分(年份在底部显示)
DateStyleShowYearMonthDay :显示年月日
DateStyleShowMonthDay :显示月日(年份在底部显示)
DateStyleShowHourMinute :显示时分
设置时间类型
typedef enum{ DateTypeStartDate, DateTypeEndDate }XHDateType; //设置是时间类型 @property (nonatomic,assign)XHDateType dateType;
DateTypeStartDate:开始时间
DateTypeEndDate :结束时间
设置最大最小时间限制
@property (nonatomic, retain) NSDate *maxLimitDate;//限制最大时间(没有设置默认2049) @property (nonatomic, retain) NSDate *minLimitDate;//限制最小时间(没有设置默认1970)
init对象(completeBlock 是点击确定后的回调,返回开始时间和结束时间)
-(instancetype)initWithCompleteBlock:(void(^)(NSDate *,NSDate *))completeBlock;
具体使用代码
XHDatePickerView *datepicker = [[XHDatePickerView alloc] initWithCompleteBlock:^(NSDate *startDate,NSDate *endDate) { NSLog(@"\n开始时间: %@,结束时间:%@",startDate,endDate); self.startTimeText.text = [startDate stringWithFormat:@"yyyy-MM-dd HH:mm"]; self.endtimeText.text = [endDate stringWithFormat:@"yyyy-MM-dd HH:mm"]; }]; datepicker.datePickerStyle = DateStyleShowYearMonthDayHourMinute; datepicker.dateType = DateTypeStartDate; datepicker.minLimitDate = [NSDate date:@"2017-08-11 12:22" WithFormat:@"yyyy-MM-dd HH:mm"]; datepicker.maxLimitDate = [NSDate date:@"2020-12-12 12:12" WithFormat:@"yyyy-MM-dd HH:mm"]; [datepicker show];
以上就是怎么在iOS中自定义一个日期选择器,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。