iOS仿去哪儿网选择日期的demo,酒店日期预定demo,iOS仿酒店入住离店日历



一个小的demo,很好用

  HotelCalendarViewController *cvc=[[HotelCalendarViewController alloc] init];
       UIColor *color = [UIColor blackColor];
       cvc.view.backgroundColor = [color colorWithAlphaComponent:0.5];
       cvc.modalPresentationStyle = UIModalPresentationOverCurrentContext;
       cvc.stratTitle=@"begin";
       cvc.endTitle=@"ending";
       [cvc setSelectCheckDateBlock:^(NSString *startDate, NSString *endDate, NSString *days) {
           NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
           dateFormatter.dateFormat = @"yyyy-MM-dd";

       }];
    [cvc setHideBlock:^{
       }];
       cvc.startTimeStr=@"2020-03-01";
       cvc.endTimeStr=@"2020-03-10";
       [self presentViewController:cvc animated:YES completion:nil];

代码github地址:

[email protected]:meachol/selectDates.git
https://github.com/meachol/selectDates.git
发布了16 篇原创文章 · 获赞 0 · 访问量 3029

猜你喜欢

转载自blog.csdn.net/meacholxpf/article/details/103983827