Dawn 2.0.0

Dawn 2.0.0

Maintained by Meniny.



Dawn 2.0.0

  • By
  • Elias Abel

Meet RepoName

RepoName

Author EMail MIT
Version Platforms Swift
Build Passing Cocoapods Carthage SPM

🏵 Introduction

RepoName is a tiny library to make using `Date` easier. Written in Swift.

📋 Requirements

Type Requirement

Platform

iOS

8.0+

macOS

10.10

tvOS

9.0

watchOS

2.0

Linux

N/A

IDE

Xcode

9.3+

Language

Swift

4.1+

📲 Installation

CocoaPods

RepoName is available on CocoaPods.

use_frameworks!
pod 'RepoName'

Manually

Copy all files in the RepoName directory into your project.

🛌 Dependency

N/A

❤️ Contribution

You are welcome to fork and submit pull requests.

🔖 License

RepoName is open-sourced software, licensed under the MIT license.

🔫 Usage

import RepoName

let now = Date()
print("now: \(now)")
print("now.isToday: \(now.isToday)")
print("now.isWeekend: \(now.isWeekend)")
print("now is: \(now.weekdayName.name)")

let nextDay = now.adding(days: 1)
print("nextDay: \(nextDay)")
print("nextDay.isTomorrow: \(nextDay.isTomorrow)")

let later = Today.compare(date: nextDay, ifLater: now)
print("nextDay is isLaterThan now: \(later)")

let todayInNextYear = Today.dateByAdding(1, of: .year, to: now)
print("todayInNextYear: \(String(describing: todayInNextYear))")