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

 

發佈了17 篇原創文章 · 獲贊 0 · 訪問量 4750
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章