概述
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];
NSLog打印的时间会和实际时间相差8小时,转成字符串会打印出正确的时间。(因为NSLog里,对时间的格式化是按GMT时间来转的,GMT时间与北京时间相差8小时)
demo下载:XHDatePicker_jb51.rar
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持靠谱客。
最后
以上就是爱笑世界为你收集整理的iOS实现自定义日期选择器示例的全部内容,希望文章能够帮你解决iOS实现自定义日期选择器示例所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复