- Notifications
You must be signed in to change notification settings - Fork363
📅 Calendar for Apple platforms in Swift
License
richardtop/CalendarKit
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
CalendarKit is a Swift calendar UI library for iOS and Mac Catalyst. It looks similar to the Apple Calendar app out-of-the-box, while allowing customization when needed. CalendarKit is composed of multiple modules which can be used together or independently.
- Create iOS Calendar App in Swift with CalendarKit - Official Tutorial
- Live Programming with CalendarKit - For Beginners
If you have aprogramming question about how to use CalendarKit in your application, ask it on StackOverflow with theCalendarKit tag.
Check out theSample App for reference.
Create a new Issue from template to report a bug or request a new feature.
CalendarKit can be installed with Swift Package Manager or with CocoaPods.
The preferred way of installing CalendarKit is via theSwift Package Manager.
- In Xcode, open your project and navigate toFile →Swift Packages →Add Package Dependency...
- Paste the repository URL (
https://github.com/richardtop/CalendarKit.git) and clickNext. - ForRules, selectVersion (Up to Next Major) and clickNext.
- ClickFinish.
Adding Package Dependencies to Your App
- Subclass
DayViewController - Implement
EventDataSourceprotocol to show events.
CalendarKit requiresEventDataSource to return an array of objects conforming toEventDescriptor protocol, specifying all the information needed to display a particular event. You're free to use a defaultEvent class as a model or create your own class conforming to theEventDescriptor protocol.
// Return an array of EventDescriptors for particular dateoverridefunc eventsForDate(_ date:Date)->[EventDescriptor]{varmodels= myAppEventStore.getEventsForDate(date) // Get events (models) from the storage / APIvarevents=[Event]()formodelin models{ // Create new EventViewletevent=Event() // Specify DateInterval event.dateInterval=DateInterval(start: model.startDate, end: model.endDate) // Add info: event title, subtitle, location to the array of Stringsvarinfo=[model.title, model.location] info.append("\(datePeriod.beginning!.format(with:"HH:mm")) -\(datePeriod.end!.format(with:"HH:mm"))") // Set "text" value of event by formatting all the information needed for display event.text= info.reduce("",{$0+ $1+"\n"}) events.append(event)}return events}
After receiving an array of events for a particular day, CalendarKit will handle view layout and display.
To respond to the user input, override mehtods ofDayViewDelegate, for example:
overridefunc dayViewDidSelectEventView(_ eventView:EventView){print("Event has been selected:\(eventview.data)")}overridefunc dayViewDidLongPressEventView(_ eventView:EventView){print("Event has been longPressed:\(eventView.data)")}
CalendarKit supports localization and uses iOS default locale to display month and day names. First day of the week is also selected according to the iOS locale.
By default, CalendarKit looks similar to the Apple Calendar app and fully supports Dark Mode. If needed, CalendarKit's look can be easily customized. Steps to apply a custom style are as follows:
- Create a new
CalendarStyleobject (or copy existing one) - Change style by updating the properties.
- Invoke
updateStylemethod with the newCalendarStyle.
letstyle=CalendarStyle()style.backgroundColor=UIColor.blackdayView.updateStyle(style)
- iOS 11.0+, macOS (Catalyst) 10.15+
- Swift 5.7+
The list of features currently in development can be viewed on theissues page.
Before contributing, please reviewguidelines and code style.
Richard Topchii
CalendarKit is available under the MIT license. See the LICENSE file for more info.
About
📅 Calendar for Apple platforms in Swift
Topics
Resources
License
Contributing
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Uh oh!
There was an error while loading.Please reload this page.



