CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.

TKCalendarView 0.1.1

TKCalendarView 0.1.1

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Nov 2016
SwiftSwift Version 3.0
SPMSupports SPM

Maintained by PowHu yang.



  • By
  • PowHu Yang

TKCalendarView

The page curl animation calendar. Inspired by 『君の名は。

About

A calendar flip animation used in the movie called 『君の名は。

Swipe to change date with page curl animation. Written in Swift 3.

Preview

Requirements

iOS 10+

XCode 8.0+

Swift 3.0+

Installation

Manually

Drag TKCalendarView.swift , TKDatePageView.swift into your project.

Usage

Use Interface Builder

Add a UIView and change class to TKCalendarView. That’s all.

Or use code

let calendar = TKCalendarView(frame: CGRect(x: 0, y: 0, width: 320, height: 320))
calendar.delegate = self
view.addSubview(calendar)

Delegate

When date changed TKCalendarView will call this delegate.

func calendar(calendar: TKCalendarView, dateChanged date: Date) {
    print(date)
}

Customization

Here is a list of customizable behaviors:

var color
var dayFont
var monthFont
var weekFont
var calendar

License

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