github.com/cyrilwei/TCCalendar

An iOS calendar view, built in Swift


License
MIT

Documentation

TCCalendar

Requirements

  • iOS 8.0+
  • Xcode 7

Integration

CocoaPods (iOS 8+)

You can use CocoaPods to install TCCalendar by adding it to your Podfile:

platform :ios, '8.0'
use_frameworks!

target 'YourApp' do
  pod 'TCCalendar'
end

Swift Package Manager

You can use The Swift Package Manager to install TCCalendar by adding the proper description to your Package.swift file:

import PackageDescription

let package = Package(
    name: "YOUR_PROJECT_NAME",
    dependencies: [
        .Package(url: "https://github.com/cyrilwei/TCCalendar.git", versions: "0.1" ..< Version.max)
    ]
)