EasyCalendar is an iOS control written in Swift 3 that displays a calendar similar to the system calendar.
With this control you can select a single date or a date range.
- Import the EasyCalendar folder and all images in your existing project.
- Connect your
CalendarViewto your View Controller.
@IBOutlet weak var calendarView: CalendarView!- Conform your View Controler with
CalendarViewDelegateprotocol, and set the delegate.
calendarView.delegate = self- Implement the protocol methods that you need for your project.
