Skip to content

Updated and improved miraan/CalendarDateRangePickerViewController library

License

Notifications You must be signed in to change notification settings

Alterplay/AltyCalendarDateRangePicker

 
 

Repository files navigation

CalendarDateRangePickerViewController

Version License Platform

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Here's what it looks like:

alt text

Usage

It's as simple as:

let dateRangePickerViewController = CalendarDateRangePickerViewController(collectionViewLayout: UICollectionViewFlowLayout())
dateRangePickerViewController.delegate = self
let navigationController = UINavigationController(rootViewController: dateRangePickerViewController)
self.navigationController?.present(navigationController, animated: true, completion: nil)

Just implement the delegate methods:

protocol CalendarDateRangePickerViewControllerDelegate {
    func didCancelPickingDateRange()
    func didPickDateRange(startDate: Date!, endDate: Date!)
}

You can also set additional options to override the defaults:

dateRangePickerViewController.minimumDate = Date()
dateRangePickerViewController.maximumDate = Calendar.current.date(byAdding: .year, value: 2, to: Date())
dateRangePickerViewController.selectedStartDate = Date()
dateRangePickerViewController.selectedEndDate = Calendar.current.date(byAdding: .day, value: 10, to: Date())
dateRangePickerViewController.selectedColor = UIColor.red
dateRangePickerViewController.titleText = "Select Date Range"

Installation

CalendarDateRangePickerViewController is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'CalendarDateRangePicker'

Author

Ljuka, [email protected]

License

CalendarDateRangePickerViewController is available under the MIT license. See the LICENSE file for more info.

About

Updated and improved miraan/CalendarDateRangePickerViewController library

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Makefile 49.5%
  • Swift 31.4%
  • Objective-C 16.7%
  • Ruby 1.8%
  • C 0.6%