美文网首页
自定义时间选择器RZDatePickerView

自定义时间选择器RZDatePickerView

作者: reloadRen | 来源:发表于2017-04-11 11:05 被阅读890次

RZDatePickerView

自定义DatePickerView
https://github.com/rzrobert/RZDatePickerView

默认样式.png

使用方法

- (void)showDatePickerWithType:(RZDateStyle)type {
    RZDatePickerView *datepicker = [[RZDatePickerView alloc] initWithCurrentDate:[NSDate date:@"2017-3-15 11:11" WithFormat:@"yyyy-MM-dd HH:mm"] CompleteBlock:^(NSDate *startDate) {
        self.timeLabel.text = [startDate stringWithFormat:@"yyyy-MM-dd HH:mm"];
    }];
    
    // datepicker.datePickerStyle = type;
    
    datepicker.datePickerStyle = DateStyleShowYearMonthDayHourMinute;
    //    datepicker.datePickerStyle = DateStyleShowMonthDayHourMinute;
    //    datepicker.datePickerStyle = DateStyleShowYearMonthDay;
    //    datepicker.datePickerStyle = DateStyleShowMonthDay;
    //    datepicker.datePickerStyle = DateStyleShowHourMinute;
    datepicker.minLimitDate = [NSDate date:@"1997-2-28 12:22" WithFormat:@"yyyy-MM-dd HH:mm"];
    datepicker.maxLimitDate = [NSDate date:@"2022-12-28 22:12" WithFormat:@"yyyy-MM-dd HH:mm"];
    // 默认值——选择时间
    datepicker.title =  @"选择时间";
    [datepicker show];

}

相关文章

  • 自定义时间选择器RZDatePickerView

    RZDatePickerView 自定义DatePickerViewhttps://github.com/rzro...

  • iOS BRPickerView选择器的使用

    一: 时间的选择 1: 弹出日期类型 2:显示时间选择器 二:字符串的选择 显示自定义字符串选择器

  • picker 地区选择器

    picker 地区选择器 地区(普通)选择器 可以自定义 ----------------------------...

  • 自定义照片选择器(可多选)

    自定义多选照片选择器 一.核心类 自定义照片选择器的核心类是ALAssetsLibrary ALAssetsGro...

  • 自定义时间选择器

    自定义时间选择器 这里使用符合控件的形式来编写,过于复杂这难于理解,能够高效实现需求。 一、时间选择器需求分析 这...

  • Mint-UI 自定义组件

    Mint-UI 自定义组件 不定期更新 TimePicker (时间选择器) 效果: TimeRangePicke...

  • android文件选择器组件

    demo效果 介绍 FileSelectorView 是自定义的文件选择器,用户在此基础上可自定义文件选择器风格。...

  • iOS 自定义时分选择器

      自定义实现时分选择器,众所周知,iPhone的系统时间选择器通常都不符合用户的审美要求,因此重新布局实现时间选...

  • 小记

    小程序 自定义组件 在组件wxss中不应使用ID选择器、属性选择器和标签名选择器。

  • Android自定义时间滚动选择器PickerView Dial

    Android自定义时间滚动选择器PickerView Dialog 正好现在项目到了测试阶段,想想也有一段时间没...

网友评论

      本文标题:自定义时间选择器RZDatePickerView

      本文链接:https://www.haomeiwen.com/subject/jruyattx.html