时间选择器

在开发中,我们总会遇到一些需求,需要实现显示从今天到后面连续n(本例中n=4)天的时间选择。那么该如何实现这样的需求呢?

前段时间我们的项目中就遇到过这样的需求,当时我还是花了一些功夫的。由最初的初版到现在的版本,也是经历过不断的修改和完善,希望能够在您的项目开发中,对你有所帮助!

功能效果如下图:


时间选择器加载页面
提示用户选择时间页面
选择时间按钮状态页面

主要数据的代码实现

1、获取从今天开始后四天的日期

/// 用于存放月份和日的数组
- (NSMutableArray *)monthAndDayArray {
    if (!_monthAndDayArray) {
        _monthAndDayArray = [[NSMutableArray alloc] init];
        
        NSTimeInterval oneDay = 24 * 60 * 60;  // 一天一共有多少秒
        NSInteger showDays = 4;    // 需要显示的总天数
        
        // 1.获取当前日期
        NSDate *currentDate = [NSDate date];
        
        for (NSInteger i = 0; i < showDays; i++) {
            
            NSDate *appointDate = [currentDate initWithTimeIntervalSinceNow: oneDay * i];
            
            NSString *currentDate = [self getCurrentDateStringWithFormatter:@"yyyy-MM-dd" withCurrentDate:appointDate];
            
            NSInteger year = [[currentDate substringToIndex:4] integerValue];
            NSInteger month = [[currentDate substringWithRange:NSMakeRange(5, 2)] integerValue];
            NSInteger day = [[currentDate substringFromIndex:8] integerValue];
            
            NSString *mandd = [NSString stringWithFormat:@"%ld月%ld日", (long)month, (long)day];
            
            ASTimeModel *timeModel = [[ASTimeModel alloc] init];
            timeModel.monthAndDay = mandd;
            timeModel.year = year;
            timeModel.month = month;
            timeModel.day = day;
            timeModel.yearMonthDay = [NSString stringWithFormat:@"%ld年%@", (long)year, mandd];
            
            if (i == 0) {
                timeModel.weekday = @"今天";
            }
            
            // 添加最终处理好的数据,将他们作为模型封装到数组中
            [_monthAndDayArray addObject:timeModel];
            
        }
        
    }
    return _monthAndDayArray;
}

2、将当前时间(NSDate)转化成年月日

#pragma mark-  将当前时间(NSDate)转化成年月日

/// 将当前时间(NSDate)转化成年月日
- (NSString *)getCurrentDateStringWithFormatter:(NSString *)formatter withCurrentDate:(NSDate *)currentDate {
    
    // 实例化一个NSDateFormatter对象
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        
        // 设定时间格式,这里可以设置成自己需要的格式
    //    [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"]; // @"yyyy/MM/dd"
        [dateFormatter setDateFormat:formatter];
        
        // 设置时区
        NSTimeZone *timeZone = [NSTimeZone timeZoneWithName:@"Asia/Beijing"];
        [dateFormatter setTimeZone:timeZone];
        
        NSString *currentDateString = [dateFormatter stringFromDate:currentDate];
    
    return currentDateString;
}

时间数据的创建

当然,这里的数据可以根据您项目的需求,进行网络请求实现这个数据的创建和加载。本例中就进行简单的数据创建和加载了。

- (NSArray *)timeArray {
    if (!_timeArray) {
        _timeArray = @[@"09:00", @"09:30", @"10:00", @"10:30", @"11:00", @"11:30", @"12:00", @"12:30", @"13:00", @"13:30", @"14:00", @"14:30", @"15:00", @"15:30", @"16:00", @"16:30", @"17:00", @"17:30", @"18:00", @"18:30", @"19:00", @"19:30", @"20:00", @"20:30", @"21:00"];
    }
    return _timeArray;
}

根据年月日计算对应日期的星期

- (void)caculateWeekDayWithYear:(NSInteger) year month:(NSInteger)month day:(NSInteger)day {
    
    if(month == 1 || month == 2) {
        month += 12;
        year--;
    }
    
    NSInteger iWeek = (day + 2 * month + 3 * (month + 1) / 5 + year + year / 4 - year / 100 + year / 400) % 7;
    
    switch (iWeek) {
        case 0:
            NSLog(@"星期一");
            self.weekday = @"周一";
            break;
            
        case 1:
            NSLog(@"星期二");
            self.weekday = @"周二";
            break;
            
        case 2:
            NSLog(@"星期三");
            self.weekday = @"周三";
            break;
            
        case 3:
            NSLog(@"星期四");
            self.weekday = @"周四";
            break;
            
        case 4:
            NSLog(@"星期五");
            self.weekday = @"周五";
            break;
            
        case 5:
            NSLog(@"星期六");
            self.weekday = @"周六";
            break;
            
        case 6:
            NSLog(@"星期日");
            self.weekday = @"周日";
            break;
            
            
        default:
            break;
    }
}

时间的创建和实现

这里采用的是用一个UIView加载很多个按钮的实现方式,根据您的项目需求,你也可以采用UICollectionView的形式实现时间的加载和显示。

CGFloat btnW = 84;
    CGFloat btnH = 30;
    NSInteger col = 4;
    CGFloat marginW = 50;
    CGFloat marginH = 10;
    
    for (NSInteger i = 0; i < self.timeArray.count; i++) {
        
        CGFloat btnX = i % col * (btnW + marginW);
        CGFloat btnY = i / col * (btnH + marginH);
        
        UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
        btn.frame = CGRectMake(btnX, btnY, btnW, btnH);
        btn.tag = i + 100;
        
        btn.layer.masksToBounds = YES;
        btn.layer.cornerRadius = 15;
        
        [btn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
        [btn setTitleColor:[UIColor blueColor] forState:UIControlStateSelected];
        
        NSString *hour = [self.timeArray[i] componentsSeparatedByString:@":"].firstObject;
        NSString *minute = [self.timeArray[i] componentsSeparatedByString:@":"].lastObject;
        if ((self.hour > [hour integerValue]) || (self.hour == [hour integerValue] && self.minute >= [minute integerValue])) {
            
            btn.enabled = NO;
            [btn setTitleColor:[UIColor lightGrayColor] forState:UIControlStateNormal];
        } else {
            
            btn.enabled = YES;
            [btn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
        }
        
        if (((self.day > self.currentDay) && (self.month == self.currentMonth)) || (self.month > self.currentMonth)) {
            
            btn.enabled = YES;
            [btn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
        }
        
        [btn setTitle:self.timeArray[i] forState:UIControlStateNormal];
        [btn addTarget:self action:@selector(selecedCurrentBtn:) forControlEvents:UIControlEventTouchUpInside];
        
        [self.bottomBGView addSubview:btn];
    }
#pragma mark- function

- (void)selecedCurrentBtn:(UIButton *)sender {
    
    [self refreshTimeButton];
    
    sender.selected = !sender.selected;
    
    if (sender.selected) {
        
        sender.backgroundColor = [UIColor blueColor];
        [sender setTitleColor:[UIColor whiteColor] forState:UIControlStateSelected];
    }
    
    NSString *timeString = self.timeArray[sender.tag - 100];
    self.timeString = timeString;
    
    NSLog(@"timeString:%@", timeString);
}

/// 更新时间按钮的状态
- (void)refreshTimeButton {
    
    for (NSInteger i = 0; i < self.timeArray.count; i++) {
        UIButton *btn = [self.bottomBGView viewWithTag:i + 100];
        btn.selected = NO;
        btn.backgroundColor = [UIColor clearColor];
        [btn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
        
        NSString *hour = [self.timeArray[i] componentsSeparatedByString:@":"].firstObject;
        NSString *minute = [self.timeArray[i] componentsSeparatedByString:@":"].lastObject;
        if ((self.hour > [hour integerValue]) || (self.hour == [hour integerValue] && self.minute >= [minute integerValue])) {
            
            btn.enabled = NO;
            [btn setTitleColor:[UIColor lightGrayColor] forState:UIControlStateNormal];
        } else {
            
            btn.enabled = YES;
            [btn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
        }
        
        if (((self.day > self.currentDay) && (self.month == self.currentMonth)) || (self.month > self.currentMonth)) {
            
            btn.enabled = YES;
            [btn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
        }
    }
}

UICollectionView实现月份和日期

- (UICollectionView *)monthAndDayCollectionView {
    if (!_monthAndDayCollectionView) {
        UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];
        layout.scrollDirection = UICollectionViewScrollDirectionHorizontal;
        layout.minimumInteritemSpacing = 0;
        layout.minimumLineSpacing = 20;
        _monthAndDayCollectionView = [[UICollectionView alloc] initWithFrame:CGRectZero collectionViewLayout:layout];
        _monthAndDayCollectionView.delegate = self;
        _monthAndDayCollectionView.dataSource = self;
        _monthAndDayCollectionView.bounces = YES;
        _monthAndDayCollectionView.showsVerticalScrollIndicator = NO;
        _monthAndDayCollectionView.showsHorizontalScrollIndicator = NO;
        _monthAndDayCollectionView.userInteractionEnabled = YES;
        _monthAndDayCollectionView.backgroundColor = [UIColor clearColor];
        
        // 默认选中第一个元素
        [_monthAndDayCollectionView selectItemAtIndexPath:[NSIndexPath indexPathForItem:0 inSection:0] animated:YES scrollPosition:UICollectionViewScrollPositionNone];

        
        [_monthAndDayCollectionView registerClass:[ASMonthAndDayCollectionViewCell class] forCellWithReuseIdentifier:[ASMonthAndDayCollectionViewCell cellIdentifier]];
//        [_monthAndDayCollectionView registerNib:[UINib nibWithNibName:[ASMonthAndDayCollectionViewCell cellIdentifier] bundle:nil] forCellWithReuseIdentifier:[ASMonthAndDayCollectionViewCell cellIdentifier]];
    }
    return _monthAndDayCollectionView;
}

弹窗的加载和实现

- (instancetype)showTimeSelectorPopoView {
    
    if (self == [super init]) {
        
        // 获取当前时间
        [self getCurrentDate];
        
        [self setupUI];
    }
    return self;
}

+ (instancetype)showTimeSelectorPopoViewWithSelectedTimeOperation:(void(^)(NSString *selectedTime))selectedTimeOperation {
    
    if (_timeSelectorPopoViewManager == nil) {
        
        _timeSelectorPopoViewManager = [[self alloc] showTimeSelectorPopoView];
        _timeSelectorPopoViewManager.frame = [UIScreen mainScreen].bounds;
        _timeSelectorPopoViewManager.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.6];
        _timeSelectorPopoViewManager.selectedTimeOperation = selectedTimeOperation;
        
        UIWindow *mainWindow = [UIApplication sharedApplication].windows[0];
        [mainWindow addSubview:_timeSelectorPopoViewManager];
    }
    return _timeSelectorPopoViewManager;
}

此处mainWindow的实现,如果您的项目中加载不了这个弹窗,那么你可以将mainWindow的创建由windows[0]改完keyWindow,如下所示:

// UIWindow *mainWindow = [UIApplication sharedApplication].windows[0];

UIWindow *mainWindow = [UIApplication sharedApplication].keyWindow;

尺寸大小可以根据您的屏幕和需求进行调整,本例中的代码采用的是1024*768的尺寸进行开发的。

最后附上Demo地址,希望可以对您有所帮助!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,126评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,254评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,445评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,185评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,178评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,970评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,276评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,927评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,400评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,883评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,997评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,646评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,213评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,204评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,423评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,423评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,722评论 2 345

推荐阅读更多精彩内容